<T> T |
ObjectSerializer.deserialize(byte[] content,
TypeRef<T> type) |
Deserializes the byte array into the original object.
|
<T> reactor.core.publisher.Mono<Response<State<T>>> |
DaprClient.getState(GetStateRequest request,
TypeRef<T> type) |
Retrieve a State based on their key.
|
<T> reactor.core.publisher.Mono<State<T>> |
DaprClient.getState(String stateStoreName,
State<T> state,
TypeRef<T> type) |
Retrieve a State based on their key.
|
<T> reactor.core.publisher.Mono<State<T>> |
DaprClient.getState(String stateStoreName,
String key,
TypeRef<T> type) |
Retrieve a State based on their key.
|
<T> reactor.core.publisher.Mono<State<T>> |
DaprClient.getState(String stateStoreName,
String key,
String etag,
StateOptions options,
TypeRef<T> type) |
Retrieve a State based on their key.
|
<T> reactor.core.publisher.Mono<Response<State<T>>> |
DaprClientGrpc.getState(GetStateRequest request,
TypeRef<T> type) |
Retrieve a State based on their key.
|
<T> reactor.core.publisher.Mono<Response<State<T>>> |
DaprClientHttp.getState(GetStateRequest request,
TypeRef<T> type) |
Retrieve a State based on their key.
|
<T> reactor.core.publisher.Mono<Response<List<State<T>>>> |
DaprClient.getStates(GetStatesRequest request,
TypeRef<T> type) |
Retrieve bulk States based on their keys.
|
<T> reactor.core.publisher.Mono<List<State<T>>> |
DaprClient.getStates(String stateStoreName,
List<String> keys,
TypeRef<T> type) |
Retrieve bulk States based on their keys.
|
<T> reactor.core.publisher.Mono<Response<List<State<T>>>> |
DaprClientGrpc.getStates(GetStatesRequest request,
TypeRef<T> type) |
Retrieve bulk States based on their keys.
|
<T> reactor.core.publisher.Mono<Response<List<State<T>>>> |
DaprClientHttp.getStates(GetStatesRequest request,
TypeRef<T> type) |
Retrieve bulk States based on their keys.
|
<T> reactor.core.publisher.Mono<Response<T>> |
DaprClient.invokeBinding(InvokeBindingRequest request,
TypeRef<T> type) |
Invokes a Binding operation.
|
<T> reactor.core.publisher.Mono<T> |
DaprClient.invokeBinding(String name,
String operation,
Object data,
TypeRef<T> type) |
Invokes a Binding operation.
|
<T> reactor.core.publisher.Mono<T> |
DaprClient.invokeBinding(String name,
String operation,
Object data,
Map<String,String> metadata,
TypeRef<T> type) |
Invokes a Binding operation.
|
<T> reactor.core.publisher.Mono<Response<T>> |
DaprClientGrpc.invokeBinding(InvokeBindingRequest request,
TypeRef<T> type) |
Invokes a Binding operation.
|
<T> reactor.core.publisher.Mono<Response<T>> |
DaprClientHttp.invokeBinding(InvokeBindingRequest request,
TypeRef<T> type) |
Invokes a Binding operation.
|
<T> reactor.core.publisher.Mono<Response<T>> |
DaprClient.invokeService(InvokeServiceRequest invokeServiceRequest,
TypeRef<T> type) |
Invoke a service method.
|
<T> reactor.core.publisher.Mono<T> |
DaprClient.invokeService(String appId,
String method,
HttpExtension httpExtension,
Map<String,String> metadata,
TypeRef<T> type) |
Invoke a service method, using serialization.
|
<T> reactor.core.publisher.Mono<T> |
DaprClient.invokeService(String appId,
String method,
Object request,
HttpExtension httpExtension,
TypeRef<T> type) |
Invoke a service method, using serialization.
|
<T> reactor.core.publisher.Mono<T> |
DaprClient.invokeService(String appId,
String method,
Object request,
HttpExtension httpExtension,
Map<String,String> metadata,
TypeRef<T> type) |
Invoke a service method, using serialization.
|
<T> reactor.core.publisher.Mono<Response<T>> |
DaprClientGrpc.invokeService(InvokeServiceRequest invokeServiceRequest,
TypeRef<T> type) |
Invoke a service method.
|
<T> reactor.core.publisher.Mono<Response<T>> |
DaprClientHttp.invokeService(InvokeServiceRequest invokeServiceRequest,
TypeRef<T> type) |
Invoke a service method.
|