Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class ActorProxyImpl implements ActorProxy {
private final DaprClient daprClient;

/**
* Creates a new instance of {@link ActorProxyAsyncClient}.
* Creates a new instance of {@link ActorProxyImpl}.
*
* @param actorType actor implementation type of the actor associated with the proxy object.
* @param actorId The actorId associated with the proxy
Expand Down Expand Up @@ -127,7 +127,7 @@ public Mono<Void> invokeActorMethod(String methodName, Object data) {
* @return Response object, null or RuntimeException.
*/
private <T> T unwrap(final String response, Class<T> clazz) {
return this.serializer.unwrapMethodResponse(response, clazz);
return this.serializer.unwrapData(response, clazz);
}

/**
Expand All @@ -139,7 +139,7 @@ private <T> T unwrap(final String response, Class<T> clazz) {
* @throws IOException In case it cannot generate String.
*/
private <T> String wrap(final T request) throws IOException {
return this.serializer.wrapMethodRequest(request);
return this.serializer.wrapData(request);
}

}
Loading