Fixing typo in invokeBinding functions' definitions (#1116)

Signed-off-by: ytimocin <ytimocin@microsoft.com>
This commit is contained in:
Yetkin Timocin 2024-09-04 12:30:38 -07:00 committed by GitHub
parent 702aa058f7
commit 9b927c84c2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 6 deletions

View File

@ -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.