Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing typo in invokeBinding functions' definitions #1116

Merged
merged 1 commit into from
Sep 4, 2024
Merged
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
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
Loading