Skip to content

Commit

Permalink
Fixing typo in invokeBinding functions' definitions
Browse files Browse the repository at this point in the history
Signed-off-by: ytimocin <ytimocin@microsoft.com>
  • Loading branch information
ytimocin committed Sep 2, 2024
1 parent 935f3be commit da6ae12
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions sdk/src/main/java/io/dapr/client/DaprClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ Mono<byte[]> invokeMethod(String appId, String methodName, byte[] request, HttpE
/**
* Invokes a Binding operation.
*
* @param bindingName The bindingName of the biding to call.
* @param bindingName The bindingName of the binding to call.
* @param operation The operation to be performed by the binding request processor.
* @param data The data to be processed, use byte[] to skip serialization.
* @return an empty Mono.
Expand All @@ -254,7 +254,7 @@ Mono<byte[]> invokeMethod(String appId, String methodName, byte[] request, HttpE
/**
* Invokes a Binding operation, skipping serialization.
*
* @param bindingName The name of the biding to call.
* @param bindingName The name of the binding to call.
* @param operation The operation to be performed by the binding request processor.
* @param data The data to be processed, skipping serialization.
* @param metadata The metadata map.
Expand All @@ -265,7 +265,7 @@ Mono<byte[]> invokeMethod(String appId, String methodName, byte[] request, HttpE
/**
* Invokes a Binding operation.
*
* @param bindingName The name of the biding to call.
* @param bindingName The name of the binding to call.
* @param operation The operation to be performed by the binding request processor.
* @param data The data to be processed, use byte[] to skip serialization.
* @param type The type being returned.
Expand All @@ -277,7 +277,7 @@ Mono<byte[]> invokeMethod(String appId, String methodName, byte[] request, HttpE
/**
* Invokes a Binding operation.
*
* @param bindingName The name of the biding to call.
* @param bindingName The name of the binding to call.
* @param operation The operation to be performed by the binding request processor.
* @param data The data to be processed, use byte[] to skip serialization.
* @param clazz The type being returned.
Expand All @@ -289,7 +289,7 @@ Mono<byte[]> invokeMethod(String appId, String methodName, byte[] request, HttpE
/**
* Invokes a Binding operation.
*
* @param bindingName The name of the biding to call.
* @param bindingName The name of the binding to call.
* @param operation The operation to be performed by the binding request processor.
* @param data The data to be processed, use byte[] to skip serialization.
* @param metadata The metadata map.
Expand All @@ -303,7 +303,7 @@ <T> Mono<T> invokeBinding(String bindingName, String operation, Object data, Map
/**
* Invokes a Binding operation.
*
* @param bindingName The name of the biding to call.
* @param bindingName The name of the binding to call.
* @param operation The operation to be performed by the binding request processor.
* @param data The data to be processed, use byte[] to skip serialization.
* @param metadata The metadata map.
Expand Down

0 comments on commit da6ae12

Please sign in to comment.