mirror of https://github.com/dapr/java-sdk.git
Fixing typo in invokeBinding functions' definitions (#1116)
Signed-off-by: ytimocin <ytimocin@microsoft.com>
This commit is contained in:
parent
702aa058f7
commit
9b927c84c2
|
@ -244,7 +244,7 @@ public interface DaprClient extends AutoCloseable {
|
|||
/**
|
||||
* 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.
|
||||
|
@ -254,7 +254,7 @@ public interface DaprClient extends AutoCloseable {
|
|||
/**
|
||||
* 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.
|
||||
|
@ -265,7 +265,7 @@ public interface DaprClient extends AutoCloseable {
|
|||
/**
|
||||
* 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.
|
||||
|
@ -277,7 +277,7 @@ public interface DaprClient extends AutoCloseable {
|
|||
/**
|
||||
* 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.
|
||||
|
@ -289,7 +289,7 @@ public interface DaprClient extends AutoCloseable {
|
|||
/**
|
||||
* 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.
|
||||
|
@ -303,7 +303,7 @@ public interface DaprClient extends AutoCloseable {
|
|||
/**
|
||||
* 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.
|
||||
|
|
Loading…
Reference in New Issue