Package io.dapr.client
Class DaprClientImpl
java.lang.Object
io.dapr.client.DaprClientImpl
- All Implemented Interfaces:
- DaprClient,- DaprPreviewClient,- AutoCloseable
Implementation of the Dapr client combining gRPC and HTTP (when applicable).
- See Also:
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprotected static final com.fasterxml.jackson.databind.ObjectMapperA mapper to serialize JSON request objects.protected DaprObjectSerializerA utility class for serialize and deserialize the transient objects.protected DaprObjectSerializerA utility class for serialize and deserialize state objects.
- 
Method SummaryModifier and TypeMethodDescriptionvoidclose()Closes the ManagedChannel for GRPC.reactor.core.publisher.Mono<ConversationResponse>converse(ConversationRequest conversationRequest) Deprecated, for removal: This API element is subject to removal in a future version.reactor.core.publisher.Mono<ConversationResponseAlpha2>converseAlpha2(ConversationRequestAlpha2 conversationRequestAlpha2) reactor.core.publisher.Mono<Void>deleteJob(DeleteJobRequest deleteJobRequest) Deletes a job based on the given request.reactor.core.publisher.Mono<Void>deleteState(DeleteStateRequest request) Delete a state.reactor.core.publisher.Mono<Void>deleteState(String storeName, String key) Delete a state.reactor.core.publisher.Mono<Void>deleteState(String storeName, String key, String etag, StateOptions options) Delete a state.reactor.core.publisher.Mono<Void>Execute a transaction.reactor.core.publisher.Mono<Void>executeStateTransaction(String storeName, List<TransactionalStateOperation<?>> operations) Execute a transaction.getBulkSecret(GetBulkSecretRequest request) Fetches all secrets from the configured vault.getBulkSecret(String storeName) Fetches all secrets from the configured vault.getBulkSecret(String storeName, Map<String, String> metadata) Fetches all secrets from the configured vault.getBulkState(GetBulkStateRequest request, TypeRef<T> type) Retrieve bulk States based on their keys.getBulkState(String storeName, List<String> keys, TypeRef<T> type) Retrieve bulk States based on their keys.getBulkState(String storeName, List<String> keys, Class<T> clazz) Retrieve bulk States based on their keys.reactor.core.publisher.Mono<Map<String,ConfigurationItem>> getConfiguration(GetConfigurationRequest request) Retrieve Map of configurations based on a provided configuration request object.reactor.core.publisher.Mono<ConfigurationItem>getConfiguration(String storeName, String key) Retrieve a configuration based on a provided key.reactor.core.publisher.Mono<Map<String,ConfigurationItem>> getConfiguration(String storeName, String... keys) Retrieve Map of configurations based on a provided variable number of keys.reactor.core.publisher.Mono<ConfigurationItem>Retrieve a configuration based on a provided key.reactor.core.publisher.Mono<Map<String,ConfigurationItem>> Retrieve Map of configurations based on a provided variable number of keys.reactor.core.publisher.Mono<GetJobResponse>getJob(GetJobRequest getJobRequest) Retrieves details of a specific job.reactor.core.publisher.Mono<DaprMetadata>Fetches Dapr Metadata from the metadata endpoint.getSecret(GetSecretRequest request) Fetches a secret from the configured vault.Fetches a secret from the configured vault.Fetches a secret from the configured vault.<T> reactor.core.publisher.Mono<State<T>>getState(GetStateRequest request, TypeRef<T> type) Retrieve a State based on their key.<T> reactor.core.publisher.Mono<State<T>>Retrieve a State based on their key.<T> reactor.core.publisher.Mono<State<T>>Retrieve a State based on their key.<T> reactor.core.publisher.Mono<State<T>>getState(String storeName, String key, StateOptions options, TypeRef<T> type) Retrieve a State based on their key.<T> reactor.core.publisher.Mono<State<T>>getState(String storeName, String key, StateOptions options, Class<T> clazz) Retrieve a State based on their key.<T> reactor.core.publisher.Mono<State<T>>Retrieve a State based on their key.<T> reactor.core.publisher.Mono<State<T>>Retrieve a State based on their key.reactor.core.publisher.Mono<Void>invokeBinding(InvokeBindingRequest request) Invokes a Binding operation.<T> reactor.core.publisher.Mono<T>invokeBinding(InvokeBindingRequest request, TypeRef<T> type) Invokes a Binding operation.reactor.core.publisher.Mono<byte[]>Invokes a Binding operation, skipping serialization.reactor.core.publisher.Mono<Void>invokeBinding(String bindingName, String operation, Object data) Invokes a Binding operation.<T> reactor.core.publisher.Mono<T>invokeBinding(String bindingName, String operation, Object data, TypeRef<T> type) Invokes a Binding operation.<T> reactor.core.publisher.Mono<T>invokeBinding(String bindingName, String operation, Object data, Class<T> clazz) Invokes a Binding operation.<T> reactor.core.publisher.Mono<T>invokeBinding(String bindingName, String operation, Object data, Map<String, String> metadata, TypeRef<T> type) Invokes a Binding operation.<T> reactor.core.publisher.Mono<T>invokeBinding(String bindingName, String operation, Object data, Map<String, String> metadata, Class<T> clazz) Invokes a Binding operation.<T> reactor.core.publisher.Mono<T>invokeMethod(InvokeMethodRequest invokeMethodRequest, TypeRef<T> type) Invoke a service method.reactor.core.publisher.Mono<byte[]>invokeMethod(String appId, String methodName, byte[] request, HttpExtension httpExtension, Map<String, String> metadata) Invoke a service method, without using serialization.reactor.core.publisher.Mono<Void>invokeMethod(String appId, String methodName, HttpExtension httpExtension, Map<String, String> metadata) Invoke a service method, using serialization.<T> reactor.core.publisher.Mono<T>invokeMethod(String appId, String methodName, HttpExtension httpExtension, Map<String, String> metadata, TypeRef<T> type) Invoke a service method, using serialization.<T> reactor.core.publisher.Mono<T>invokeMethod(String appId, String methodName, HttpExtension httpExtension, Map<String, String> metadata, Class<T> clazz) Invoke a service method, using serialization.reactor.core.publisher.Mono<Void>invokeMethod(String appId, String methodName, Object request, HttpExtension httpExtension) Invoke a service method, using serialization.<T> reactor.core.publisher.Mono<T>invokeMethod(String appId, String methodName, Object request, HttpExtension httpExtension, TypeRef<T> type) Invoke a service method, using serialization.<T> reactor.core.publisher.Mono<T>invokeMethod(String appId, String methodName, Object request, HttpExtension httpExtension, Class<T> clazz) Invoke a service method, using serialization.reactor.core.publisher.Mono<Void>invokeMethod(String appId, String methodName, Object request, HttpExtension httpExtension, Map<String, String> metadata) Invoke a service method, using serialization.<T> reactor.core.publisher.Mono<T>invokeMethod(String appId, String methodName, Object data, HttpExtension httpExtension, Map<String, String> metadata, TypeRef<T> type) Invoke a service method, using serialization.<T> reactor.core.publisher.Mono<T>invokeMethod(String appId, String methodName, Object request, HttpExtension httpExtension, Map<String, String> metadata, Class<T> clazz) Invoke a service method, using serialization.<T extends io.grpc.stub.AbstractStub<T>>
 TnewGrpcStub(String appId, Function<io.grpc.Channel, T> stubBuilder) Returns a newly created gRPC stub with proper interceptors and channel for gRPC proxy invocation.reactor.core.publisher.Mono<Void>publishEvent(PublishEventRequest request) Publish an event.reactor.core.publisher.Mono<Void>publishEvent(String pubsubName, String topicName, Object data) Publish an event.reactor.core.publisher.Mono<Void>Publish an event.<T> reactor.core.publisher.Mono<BulkPublishResponse<T>>publishEvents(BulkPublishRequest<T> request) Publish multiple events to Dapr in a single request.<T> reactor.core.publisher.Mono<BulkPublishResponse<T>>publishEvents(String pubsubName, String topicName, String contentType, List<T> events) Publish multiple events to Dapr in a single request.<T> reactor.core.publisher.Mono<BulkPublishResponse<T>>publishEvents(String pubsubName, String topicName, String contentType, Map<String, String> requestMetadata, List<T> events) Publish multiple events to Dapr in a single request.<T> reactor.core.publisher.Mono<BulkPublishResponse<T>>publishEvents(String pubsubName, String topicName, String contentType, Map<String, String> requestMetadata, T... events) Publish multiple events to Dapr in a single request.<T> reactor.core.publisher.Mono<BulkPublishResponse<T>>publishEvents(String pubsubName, String topicName, String contentType, T... events) Publish multiple events to Dapr in a single request.<T> reactor.core.publisher.Mono<QueryStateResponse<T>>queryState(QueryStateRequest request, TypeRef<T> type) Query for states using a query request.<T> reactor.core.publisher.Mono<QueryStateResponse<T>>queryState(QueryStateRequest request, Class<T> clazz) Query for states using a query request.<T> reactor.core.publisher.Mono<QueryStateResponse<T>>queryState(String storeName, Query query, TypeRef<T> type) Query for states using a query domain object.<T> reactor.core.publisher.Mono<QueryStateResponse<T>>queryState(String storeName, Query query, Class<T> clazz) Query for states using a query domain object.<T> reactor.core.publisher.Mono<QueryStateResponse<T>>Query for states using a query domain object.<T> reactor.core.publisher.Mono<QueryStateResponse<T>>Query for states using a query domain object.<T> reactor.core.publisher.Mono<QueryStateResponse<T>>queryState(String storeName, String query, TypeRef<T> type) Query for states using a query string.<T> reactor.core.publisher.Mono<QueryStateResponse<T>>queryState(String storeName, String query, Class<T> clazz) Query for states using a query string.<T> reactor.core.publisher.Mono<QueryStateResponse<T>>Query for states using a query string.<T> reactor.core.publisher.Mono<QueryStateResponse<T>>Query for states using a query string.reactor.core.publisher.Mono<Void>saveBulkState(SaveStateRequest request) Save/Update a list of states.reactor.core.publisher.Mono<Void>saveBulkState(String storeName, List<State<?>> states) Save/Update a list of states.reactor.core.publisher.Mono<Void>Save/Update a state.reactor.core.publisher.Mono<Void>Save/Update a state.reactor.core.publisher.Mono<Void>scheduleJob(ScheduleJobRequest scheduleJobRequest) Schedules a job using the provided job request details.reactor.core.publisher.Mono<Void>shutdown()Gracefully shutdown the dapr runtime.reactor.core.publisher.Flux<SubscribeConfigurationResponse>Subscribe to the keys for any change.reactor.core.publisher.Flux<SubscribeConfigurationResponse>subscribeConfiguration(String storeName, String... keys) Subscribe to the keys for any change.reactor.core.publisher.Flux<SubscribeConfigurationResponse>Subscribe to the keys for any change.<T> SubscriptionsubscribeToEvents(String pubsubName, String topic, SubscriptionListener<T> listener, TypeRef<T> type) Subscribe to pubsub via streaming.reactor.core.publisher.Mono<Boolean>tryLock(LockRequest request) Tries to get a lock with an expiry.reactor.core.publisher.Mono<Boolean>Tries to get a lock with an expiry.reactor.core.publisher.Mono<UnlockResponseStatus>unlock(UnlockRequest request) Unlocks a lock.reactor.core.publisher.Mono<UnlockResponseStatus>Unlocks a lock.reactor.core.publisher.Mono<UnsubscribeConfigurationResponse>Unsubscribe from previously subscribed keys.reactor.core.publisher.Mono<UnsubscribeConfigurationResponse>unsubscribeConfiguration(String id, String storeName) Unsubscribe from previously subscribed keys.reactor.core.publisher.Mono<Void>waitForSidecar(int timeoutInMilliseconds) Waits for the sidecar, giving up after timeout.
- 
Field Details- 
JSON_REQUEST_MAPPERprotected static final com.fasterxml.jackson.databind.ObjectMapper JSON_REQUEST_MAPPERA mapper to serialize JSON request objects.
- 
objectSerializerA utility class for serialize and deserialize the transient objects.
- 
stateSerializerA utility class for serialize and deserialize state objects.
 
- 
- 
Method Details- 
newGrpcStubpublic <T extends io.grpc.stub.AbstractStub<T>> T newGrpcStub(String appId, Function<io.grpc.Channel, T> stubBuilder) Returns a newly created gRPC stub with proper interceptors and channel for gRPC proxy invocation.- Type Parameters:
- T- the generic type of the service to be invoked.
- Parameters:
- appId- appId to be included in all gRPC calls for service invocation.
- stubBuilder- user-provided callback method to construct a new stub given the channel.
- Returns:
- the gRPC stub with proper interceptors and channel.
 
- 
waitForSidecarWaits for the sidecar, giving up after timeout.- Parameters:
- timeoutInMilliseconds- Timeout in milliseconds to wait for sidecar.
- Returns:
- a Mono plan of type Void.
 
- 
publishEventPublish an event.- Parameters:
- request- the request for the publish event.
- Returns:
- a Mono plan of a Dapr's void response.
 
- 
publishEventspublic <T> reactor.core.publisher.Mono<BulkPublishResponse<T>> publishEvents(BulkPublishRequest<T> request) Publish multiple events to Dapr in a single request.- Type Parameters:
- T- The type of events to publish in the call.
- Parameters:
- request-- BulkPublishRequestobject.
- Returns:
- A Mono of BulkPublishResponseobject.
 
- 
subscribeToEventspublic <T> Subscription subscribeToEvents(String pubsubName, String topic, SubscriptionListener<T> listener, TypeRef<T> type) Subscribe to pubsub via streaming.- Type Parameters:
- T- Type of object deserialization.
- Parameters:
- pubsubName- Name of the pubsub component.
- topic- Name of the topic to subscribe to.
- listener- Callback methods to process events.
- type- Type for object deserialization.
- Returns:
- An active subscription.
 
- 
invokeMethodpublic <T> reactor.core.publisher.Mono<T> invokeMethod(InvokeMethodRequest invokeMethodRequest, TypeRef<T> type) Description copied from interface:DaprClientInvoke a service method.- Type Parameters:
- T- The Type of the return, use byte[] to skip serialization.
- Parameters:
- invokeMethodRequest- Request object.
- type- The Type needed as return for the call.
- Returns:
- A Mono Plan of type T.
 
- 
invokeBindingpublic <T> reactor.core.publisher.Mono<T> invokeBinding(InvokeBindingRequest request, TypeRef<T> type) Invokes a Binding operation.- Type Parameters:
- T- The type of the return
- Parameters:
- request- The binding invocation request.
- type- The type being returned.
- Returns:
- a Mono plan of type T.
 
- 
getStateRetrieve a State based on their key.- Type Parameters:
- T- The Type of the return.
- Parameters:
- request- The request to get state.
- type- The Type of State needed as return.
- Returns:
- A Mono Plan for the requested State.
 
- 
getBulkStatepublic <T> reactor.core.publisher.Mono<List<State<T>>> getBulkState(GetBulkStateRequest request, TypeRef<T> type) Retrieve bulk States based on their keys.- Type Parameters:
- T- The Type of the return.
- Parameters:
- request- The request to get state.
- type- The Type of State needed as return.
- Returns:
- A Mono Plan for the requested State.
 
- 
executeStateTransactionpublic reactor.core.publisher.Mono<Void> executeStateTransaction(ExecuteStateTransactionRequest request) Execute a transaction.- Parameters:
- request- Request to execute transaction.
- Returns:
- a Mono plan of type Response Void
 
- 
saveBulkStateSave/Update a list of states.- Parameters:
- request- Request to save states.
- Returns:
- a Mono plan of type Void.
 
- 
deleteStateDelete a state.- Parameters:
- request- Request to delete a state.
- Returns:
- a Mono plan of type Void.
 
- 
getSecretFetches a secret from the configured vault.- Parameters:
- request- Request to fetch secret.
- Returns:
- Key-value pairs for the secret.
 
- 
getBulkSecretpublic reactor.core.publisher.Mono<Map<String,Map<String, getBulkSecretString>>> (GetBulkSecretRequest request) Fetches all secrets from the configured vault.- Parameters:
- request- Request to fetch secret.
- Returns:
- Key-value pairs for the secret.
 
- 
tryLockTries to get a lock with an expiry.- Parameters:
- request- The request to lock
- Returns:
- Whether the lock is successful
 
- 
unlockUnlocks a lock.- Parameters:
- request- The request to unlock
- Returns:
- Unlock result
 
- 
queryStatepublic <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(QueryStateRequest request, TypeRef<T> type) Query for states using a query request.- Type Parameters:
- T- The Type of the return, use byte[] to skip serialization.
- Parameters:
- request- Query request object.
- type- The type needed as return for the call.
- Returns:
- A Mono of QueryStateResponse of type T.
 
- 
closeCloses the ManagedChannel for GRPC.- Throws:
- IOException- on exception.
- Exception
- See Also:
- 
- ManagedChannel.shutdown()
 
 
- 
shutdownGracefully shutdown the dapr runtime.- Returns:
- a Mono plan of type Void.
 
- 
getConfigurationpublic reactor.core.publisher.Mono<Map<String,ConfigurationItem>> getConfiguration(GetConfigurationRequest request) Retrieve Map of configurations based on a provided configuration request object.- Parameters:
- request- request for retrieving Configurations for a list keys
- Returns:
- Mono of Map of ConfigurationItems
 
- 
subscribeConfigurationpublic reactor.core.publisher.Flux<SubscribeConfigurationResponse> subscribeConfiguration(SubscribeConfigurationRequest request) Subscribe to the keys for any change.- Parameters:
- request- request for subscribing to any change for the given keys in request
- Returns:
- Flux of SubscribeConfigurationResponseinstance
 
- 
unsubscribeConfigurationpublic reactor.core.publisher.Mono<UnsubscribeConfigurationResponse> unsubscribeConfiguration(UnsubscribeConfigurationRequest request) Unsubscribe from previously subscribed keys.- Parameters:
- request- request for unsubscribing to any change for the given subscription id in request
- Returns:
- Mono of UnsubscribeConfigurationResponseinstance.
 
- 
scheduleJobSchedules a job using the provided job request details.- Parameters:
- scheduleJobRequest- The request containing the details of the job to schedule. Must include a name and optional schedule, data, and other related properties.
- Returns:
- A Monothat completes when the job scheduling operation is successful or raises an error.
 
- 
getJobRetrieves details of a specific job.- Parameters:
- getJobRequest- The request containing the job name for which the details are to be fetched. The name property is mandatory.
- Returns:
- A Monothat emits theGetJobResponsecontaining job details or raises an error if the job is not found.
 
- 
deleteJobDeletes a job based on the given request.- Parameters:
- deleteJobRequest- The request containing the job name to be deleted. The name property is mandatory.
- Returns:
- A Monothat completes when the job is successfully deleted or raises an error.
 
- 
getMetadataDescription copied from interface:DaprClientFetches Dapr Metadata from the metadata endpoint.- Returns:
- DaprMetadata containing Dapr Metadata from the metadata endpoint.
 
- 
converse@Deprecated(forRemoval=true) public reactor.core.publisher.Mono<ConversationResponse> converse(ConversationRequest conversationRequest) Deprecated, for removal: This API element is subject to removal in a future version.
- 
converseAlpha2public reactor.core.publisher.Mono<ConversationResponseAlpha2> converseAlpha2(ConversationRequestAlpha2 conversationRequestAlpha2) 
- 
publishEventpublic reactor.core.publisher.Mono<Void> publishEvent(String pubsubName, String topicName, Object data) Publish an event.- Specified by:
- publishEventin interface- DaprClient
- Parameters:
- pubsubName- the pubsub name we will publish the event to
- topicName- the topicName where the event will be published.
- data- the event's data to be published, use byte[] for skipping serialization.
- Returns:
- a Mono plan of type Void.
 
- 
publishEventpublic reactor.core.publisher.Mono<Void> publishEvent(String pubsubName, String topicName, Object data, Map<String, String> metadata) Publish an event.- Specified by:
- publishEventin interface- DaprClient
- Parameters:
- pubsubName- the pubsub name we will publish the event to
- topicName- the topicName where the event will be published.
- data- the event's data to be published, use byte[] for skipping serialization.
- metadata- The metadata for the published event.
- Returns:
- a Mono plan of type Void.
 
- 
invokeMethodpublic <T> reactor.core.publisher.Mono<T> invokeMethod(String appId, String methodName, Object data, HttpExtension httpExtension, Map<String, String> metadata, TypeRef<T> type) Invoke a service method, using serialization.- Specified by:
- invokeMethodin interface- DaprClient
- Type Parameters:
- T- The Type of the return, use byte[] to skip serialization.
- Parameters:
- appId- The Application ID where the service is.
- methodName- The actual Method to be call in the application.
- data- The data to be sent to invoke the service, use byte[] to skip serialization.
- httpExtension- Additional fields that are needed if the receiving app is listening on HTTP,- HttpExtension.NONEotherwise.
- metadata- Metadata (in GRPC) or headers (in HTTP) to be sent in data.
- type- The Type needed as return for the call.
- Returns:
- A Mono Plan of type T.
 
- 
invokeMethodpublic <T> reactor.core.publisher.Mono<T> invokeMethod(String appId, String methodName, Object request, HttpExtension httpExtension, Map<String, String> metadata, Class<T> clazz) Invoke a service method, using serialization.- Specified by:
- invokeMethodin interface- DaprClient
- Type Parameters:
- T- The Type of the return, use byte[] to skip serialization.
- Parameters:
- appId- The Application ID where the service is.
- methodName- The actual Method to be call in the application.
- request- The request to be sent to invoke the service, use byte[] to skip serialization.
- httpExtension- Additional fields that are needed if the receiving app is listening on HTTP,- HttpExtension.NONEotherwise.
- metadata- Metadata (in GRPC) or headers (in HTTP) to be sent in request.
- clazz- The type needed as return for the call.
- Returns:
- A Mono Plan of type T.
 
- 
invokeMethodpublic <T> reactor.core.publisher.Mono<T> invokeMethod(String appId, String methodName, HttpExtension httpExtension, Map<String, String> metadata, TypeRef<T> type) Invoke a service method, using serialization.- Specified by:
- invokeMethodin interface- DaprClient
- Type Parameters:
- T- The Type of the return, use byte[] to skip serialization.
- Parameters:
- appId- The Application ID where the service is.
- methodName- The actual Method to be call in the application.
- httpExtension- Additional fields that are needed if the receiving app is listening on HTTP,- HttpExtension.NONEotherwise.
- metadata- Metadata (in GRPC) or headers (in HTTP) to be sent in request.
- type- The Type needed as return for the call.
- Returns:
- A Mono Plan of type T.
 
- 
invokeMethodpublic <T> reactor.core.publisher.Mono<T> invokeMethod(String appId, String methodName, HttpExtension httpExtension, Map<String, String> metadata, Class<T> clazz) Invoke a service method, using serialization.- Specified by:
- invokeMethodin interface- DaprClient
- Type Parameters:
- T- The Type of the return, use byte[] to skip serialization.
- Parameters:
- appId- The Application ID where the service is.
- methodName- The actual Method to be call in the application.
- httpExtension- Additional fields that are needed if the receiving app is listening on HTTP,- HttpExtension.NONEotherwise.
- metadata- Metadata (in GRPC) or headers (in HTTP) to be sent in request.
- clazz- The type needed as return for the call.
- Returns:
- A Mono Plan of type T.
 
- 
invokeMethodpublic <T> reactor.core.publisher.Mono<T> invokeMethod(String appId, String methodName, Object request, HttpExtension httpExtension, TypeRef<T> type) Invoke a service method, using serialization.- Specified by:
- invokeMethodin interface- DaprClient
- Type Parameters:
- T- The Type of the return, use byte[] to skip serialization.
- Parameters:
- appId- The Application ID where the service is.
- methodName- The actual Method to be call in the application.
- request- The request to be sent to invoke the service, use byte[] to skip serialization.
- httpExtension- Additional fields that are needed if the receiving app is listening on HTTP,- HttpExtension.NONEotherwise.
- type- The Type needed as return for the call.
- Returns:
- A Mono Plan of type T.
 
- 
invokeMethodpublic <T> reactor.core.publisher.Mono<T> invokeMethod(String appId, String methodName, Object request, HttpExtension httpExtension, Class<T> clazz) Invoke a service method, using serialization.- Specified by:
- invokeMethodin interface- DaprClient
- Type Parameters:
- T- The Type of the return, use byte[] to skip serialization.
- Parameters:
- appId- The Application ID where the service is.
- methodName- The actual Method to be call in the application.
- request- The request to be sent to invoke the service, use byte[] to skip serialization.
- httpExtension- Additional fields that are needed if the receiving app is listening on HTTP,- HttpExtension.NONEotherwise.
- clazz- The type needed as return for the call.
- Returns:
- A Mono Plan of type T.
 
- 
invokeMethodpublic reactor.core.publisher.Mono<Void> invokeMethod(String appId, String methodName, Object request, HttpExtension httpExtension) Invoke a service method, using serialization.- Specified by:
- invokeMethodin interface- DaprClient
- Parameters:
- appId- The Application ID where the service is.
- methodName- The actual Method to be call in the application.
- request- The request to be sent to invoke the service, use byte[] to skip serialization.
- httpExtension- Additional fields that are needed if the receiving app is listening on HTTP,- HttpExtension.NONEotherwise.
- Returns:
- A Mono Plan of type Void.
 
- 
invokeMethodpublic reactor.core.publisher.Mono<Void> invokeMethod(String appId, String methodName, Object request, HttpExtension httpExtension, Map<String, String> metadata) Invoke a service method, using serialization.- Specified by:
- invokeMethodin interface- DaprClient
- Parameters:
- appId- The Application ID where the service is.
- methodName- The actual Method to be call in the application.
- request- The request to be sent to invoke the service, use byte[] to skip serialization.
- httpExtension- Additional fields that are needed if the receiving app is listening on HTTP,- HttpExtension.NONEotherwise.
- metadata- Metadata (in GRPC) or headers (in HTTP) to be sent in request.
- Returns:
- A Mono Plan of type Void.
 
- 
invokeMethodpublic reactor.core.publisher.Mono<Void> invokeMethod(String appId, String methodName, HttpExtension httpExtension, Map<String, String> metadata) Invoke a service method, using serialization.- Specified by:
- invokeMethodin interface- DaprClient
- Parameters:
- appId- The Application ID where the service is.
- methodName- The actual Method to be call in the application.
- httpExtension- Additional fields that are needed if the receiving app is listening on HTTP,- HttpExtension.NONEotherwise.
- metadata- Metadata (in GRPC) or headers (in HTTP) to be sent in request.
- Returns:
- A Mono Plan of type Void.
 
- 
invokeMethodpublic reactor.core.publisher.Mono<byte[]> invokeMethod(String appId, String methodName, byte[] request, HttpExtension httpExtension, Map<String, String> metadata) Invoke a service method, without using serialization.- Specified by:
- invokeMethodin interface- DaprClient
- Parameters:
- appId- The Application ID where the service is.
- methodName- The actual Method to be call in the application.
- request- The request to be sent to invoke the service, use byte[] to skip serialization.
- httpExtension- Additional fields that are needed if the receiving app is listening on HTTP,- HttpExtension.NONEotherwise.
- metadata- Metadata (in GRPC) or headers (in HTTP) to be sent in request.
- Returns:
- A Mono Plan of type byte[].
 
- 
invokeBindingpublic reactor.core.publisher.Mono<Void> invokeBinding(String bindingName, String operation, Object data) Invokes a Binding operation.- Specified by:
- invokeBindingin interface- DaprClient
- Parameters:
- bindingName- The bindingName of the binding to call.
- operation- The operation to be performed by the binding request processor.
- data- The data to be processed, use byte[] to skip serialization.
- Returns:
- an empty Mono.
 
- 
invokeBindingpublic reactor.core.publisher.Mono<byte[]> invokeBinding(String bindingName, String operation, byte[] data, Map<String, String> metadata) Invokes a Binding operation, skipping serialization.- Specified by:
- invokeBindingin interface- DaprClient
- Parameters:
- bindingName- The name of the binding to call.
- operation- The operation to be performed by the binding request processor.
- data- The data to be processed, skipping serialization.
- metadata- The metadata map.
- Returns:
- a Mono plan of type byte[].
 
- 
invokeBindingpublic <T> reactor.core.publisher.Mono<T> invokeBinding(String bindingName, String operation, Object data, TypeRef<T> type) Invokes a Binding operation.- Specified by:
- invokeBindingin interface- DaprClient
- Type Parameters:
- T- The type of the return
- Parameters:
- bindingName- The name of the binding to call.
- operation- The operation to be performed by the binding request processor.
- data- The data to be processed, use byte[] to skip serialization.
- type- The type being returned.
- Returns:
- a Mono plan of type T.
 
- 
invokeBindingpublic <T> reactor.core.publisher.Mono<T> invokeBinding(String bindingName, String operation, Object data, Class<T> clazz) Invokes a Binding operation.- Specified by:
- invokeBindingin interface- DaprClient
- Type Parameters:
- T- The type of the return
- Parameters:
- bindingName- The name of the binding to call.
- operation- The operation to be performed by the binding request processor.
- data- The data to be processed, use byte[] to skip serialization.
- clazz- The type being returned.
- Returns:
- a Mono plan of type T.
 
- 
invokeBindingpublic <T> reactor.core.publisher.Mono<T> invokeBinding(String bindingName, String operation, Object data, Map<String, String> metadata, TypeRef<T> type) Invokes a Binding operation.- Specified by:
- invokeBindingin interface- DaprClient
- Type Parameters:
- T- The type of the return
- Parameters:
- bindingName- The name of the binding to call.
- operation- The operation to be performed by the binding request processor.
- data- The data to be processed, use byte[] to skip serialization.
- metadata- The metadata map.
- type- The type being returned.
- Returns:
- a Mono plan of type T.
 
- 
invokeBindingpublic <T> reactor.core.publisher.Mono<T> invokeBinding(String bindingName, String operation, Object data, Map<String, String> metadata, Class<T> clazz) Invokes a Binding operation.- Specified by:
- invokeBindingin interface- DaprClient
- Type Parameters:
- T- The type of the return
- Parameters:
- bindingName- The name of the binding to call.
- operation- The operation to be performed by the binding request processor.
- data- The data to be processed, use byte[] to skip serialization.
- metadata- The metadata map.
- clazz- The type being returned.
- Returns:
- a Mono plan of type T.
 
- 
invokeBindingInvokes a Binding operation.- Specified by:
- invokeBindingin interface- DaprClient
- Parameters:
- request- The binding invocation request.
- Returns:
- a Mono with void.
 
- 
getStatepublic <T> reactor.core.publisher.Mono<State<T>> getState(String storeName, State<T> state, TypeRef<T> type) Retrieve a State based on their key.- Specified by:
- getStatein interface- DaprClient
- Type Parameters:
- T- The type of the return.
- Parameters:
- storeName- The name of the state store.
- state- State to be re-retrieved.
- type- The type of State needed as return.
- Returns:
- A Mono Plan for the requested State.
 
- 
getStatepublic <T> reactor.core.publisher.Mono<State<T>> getState(String storeName, State<T> state, Class<T> clazz) Retrieve a State based on their key.- Specified by:
- getStatein interface- DaprClient
- Type Parameters:
- T- The type of the return.
- Parameters:
- storeName- The name of the state store.
- state- State to be re-retrieved.
- clazz- The type of State needed as return.
- Returns:
- A Mono Plan for the requested State.
 
- 
getStatepublic <T> reactor.core.publisher.Mono<State<T>> getState(String storeName, String key, TypeRef<T> type) Retrieve a State based on their key.- Specified by:
- getStatein interface- DaprClient
- Type Parameters:
- T- The type of the return.
- Parameters:
- storeName- The name of the state store.
- key- The key of the State to be retrieved.
- type- The type of State needed as return.
- Returns:
- A Mono Plan for the requested State.
 
- 
getStatepublic <T> reactor.core.publisher.Mono<State<T>> getState(String storeName, String key, Class<T> clazz) Retrieve a State based on their key.- Specified by:
- getStatein interface- DaprClient
- Type Parameters:
- T- The type of the return.
- Parameters:
- storeName- The name of the state store.
- key- The key of the State to be retrieved.
- clazz- The type of State needed as return.
- Returns:
- A Mono Plan for the requested State.
 
- 
getStatepublic <T> reactor.core.publisher.Mono<State<T>> getState(String storeName, String key, StateOptions options, TypeRef<T> type) Retrieve a State based on their key.- Specified by:
- getStatein interface- DaprClient
- Type Parameters:
- T- The Type of the return.
- Parameters:
- storeName- The name of the state store.
- key- The key of the State to be retrieved.
- options- Optional settings for retrieve operation.
- type- The Type of State needed as return.
- Returns:
- A Mono Plan for the requested State.
 
- 
getStatepublic <T> reactor.core.publisher.Mono<State<T>> getState(String storeName, String key, StateOptions options, Class<T> clazz) Retrieve a State based on their key.- Specified by:
- getStatein interface- DaprClient
- Type Parameters:
- T- The Type of the return.
- Parameters:
- storeName- The name of the state store.
- key- The key of the State to be retrieved.
- options- Optional settings for retrieve operation.
- clazz- The Type of State needed as return.
- Returns:
- A Mono Plan for the requested State.
 
- 
queryStatepublic <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(String storeName, String query, Map<String, String> metadata, Class<T> clazz) Query for states using a query string.- Specified by:
- queryStatein interface- DaprPreviewClient
- Type Parameters:
- T- The Type of the return, use byte[] to skip serialization.
- Parameters:
- storeName- Name of the state store to query.
- query- String value of the query.
- metadata- Optional metadata passed to the state store.
- clazz- The type needed as return for the call.
- Returns:
- A Mono of QueryStateResponse of type T.
 
- 
queryStatepublic <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(String storeName, String query, Map<String, String> metadata, TypeRef<T> type) Query for states using a query string.- Specified by:
- queryStatein interface- DaprPreviewClient
- Type Parameters:
- T- The Type of the return, use byte[] to skip serialization.
- Parameters:
- storeName- Name of the state store to query.
- query- String value of the query.
- metadata- Optional metadata passed to the state store.
- type- The type needed as return for the call.
- Returns:
- A Mono of QueryStateResponse of type T.
 
- 
queryStatepublic <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(String storeName, String query, Class<T> clazz) Query for states using a query string.- Specified by:
- queryStatein interface- DaprPreviewClient
- Type Parameters:
- T- The Type of the return, use byte[] to skip serialization.
- Parameters:
- storeName- Name of the state store to query.
- query- String value of the query.
- clazz- The type needed as return for the call.
- Returns:
- A Mono of QueryStateResponse of type T.
 
- 
queryStatepublic <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(String storeName, String query, TypeRef<T> type) Query for states using a query string.- Specified by:
- queryStatein interface- DaprPreviewClient
- Type Parameters:
- T- The Type of the return, use byte[] to skip serialization.
- Parameters:
- storeName- Name of the state store to query.
- query- String value of the query.
- type- The type needed as return for the call.
- Returns:
- A Mono of QueryStateResponse of type T.
 
- 
queryStatepublic <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(String storeName, Query query, Map<String, String> metadata, Class<T> clazz) Query for states using a query domain object.- Specified by:
- queryStatein interface- DaprPreviewClient
- Type Parameters:
- T- The Type of the return, use byte[] to skip serialization.
- Parameters:
- storeName- Name of the state store to query.
- query- Query value domain object.
- metadata- Optional metadata passed to the state store.
- clazz- The type needed as return for the call.
- Returns:
- A Mono of QueryStateResponse of type T.
 
- 
queryStatepublic <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(String storeName, Query query, Map<String, String> metadata, TypeRef<T> type) Query for states using a query domain object.- Specified by:
- queryStatein interface- DaprPreviewClient
- Type Parameters:
- T- The Type of the return, use byte[] to skip serialization.
- Parameters:
- storeName- Name of the state store to query.
- query- Query value domain object.
- metadata- Optional metadata passed to the state store.
- type- The type needed as return for the call.
- Returns:
- A Mono of QueryStateResponse of type T.
 
- 
queryStatepublic <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(String storeName, Query query, Class<T> clazz) Query for states using a query domain object.- Specified by:
- queryStatein interface- DaprPreviewClient
- Type Parameters:
- T- The Type of the return, use byte[] to skip serialization.
- Parameters:
- storeName- Name of the state store to query.
- query- Query value domain object.
- clazz- The type needed as return for the call.
- Returns:
- A Mono of QueryStateResponse of type T.
 
- 
queryStatepublic <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(String storeName, Query query, TypeRef<T> type) Query for states using a query domain object.- Specified by:
- queryStatein interface- DaprPreviewClient
- Type Parameters:
- T- The Type of the return, use byte[] to skip serialization.
- Parameters:
- storeName- Name of the state store to query.
- query- Query value domain object.
- type- The type needed as return for the call.
- Returns:
- A Mono of QueryStateResponse of type T.
 
- 
queryStatepublic <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(QueryStateRequest request, Class<T> clazz) Query for states using a query request.- Specified by:
- queryStatein interface- DaprPreviewClient
- Type Parameters:
- T- The Type of the return, use byte[] to skip serialization.
- Parameters:
- request- Query request object.
- clazz- The type needed as return for the call.
- Returns:
- A Mono of QueryStateResponse of type T.
 
- 
publishEventspublic <T> reactor.core.publisher.Mono<BulkPublishResponse<T>> publishEvents(String pubsubName, String topicName, String contentType, List<T> events) Publish multiple events to Dapr in a single request.- Specified by:
- publishEventsin interface- DaprPreviewClient
- Type Parameters:
- T- The type of the events to publish in the call.
- Parameters:
- pubsubName- the pubsub name we will publish the event to.
- topicName- the topicName where the event will be published.
- contentType- the content type of the event. Use Mime based types.
- events- the- Listof events to be published.
- Returns:
- the BulkPublishResponsecontaining publish status of each event. The "entryID" field inBulkPublishEntryinBulkPublishResponseFailedEntrywill be generated based on the order of events in theList.
 
- 
publishEventspublic <T> reactor.core.publisher.Mono<BulkPublishResponse<T>> publishEvents(String pubsubName, String topicName, String contentType, T... events) Publish multiple events to Dapr in a single request.- Specified by:
- publishEventsin interface- DaprPreviewClient
- Type Parameters:
- T- The type of the events to publish in the call.
- Parameters:
- pubsubName- the pubsub name we will publish the event to.
- topicName- the topicName where the event will be published.
- contentType- the content type of the event. Use Mime based types.
- events- the varargs of events to be published.
- Returns:
- the BulkPublishResponsecontaining publish status of each event. The "entryID" field inBulkPublishEntryinBulkPublishResponseFailedEntrywill be generated based on the order of events in theList.
 
- 
publishEventspublic <T> reactor.core.publisher.Mono<BulkPublishResponse<T>> publishEvents(String pubsubName, String topicName, String contentType, Map<String, String> requestMetadata, T... events) Publish multiple events to Dapr in a single request.- Specified by:
- publishEventsin interface- DaprPreviewClient
- Type Parameters:
- T- The type of the events to publish in the call.
- Parameters:
- pubsubName- the pubsub name we will publish the event to.
- topicName- the topicName where the event will be published.
- contentType- the content type of the event. Use Mime based types.
- requestMetadata- the metadata to be set at the request level for the- BulkPublishRequest.
- events- the varargs of events to be published.
- Returns:
- the BulkPublishResponsecontaining publish status of each event. The "entryID" field inBulkPublishEntryinBulkPublishResponseFailedEntrywill be generated based on the order of events in theList.
 
- 
publishEventspublic <T> reactor.core.publisher.Mono<BulkPublishResponse<T>> publishEvents(String pubsubName, String topicName, String contentType, Map<String, String> requestMetadata, List<T> events) Publish multiple events to Dapr in a single request.- Specified by:
- publishEventsin interface- DaprPreviewClient
- Type Parameters:
- T- The type of the events to publish in the call.
- Parameters:
- pubsubName- the pubsub name we will publish the event to.
- topicName- the topicName where the event will be published.
- contentType- the content type of the event. Use Mime based types.
- requestMetadata- the metadata to be set at the request level for the- BulkPublishRequest.
- events- the- Listof events to be published.
- Returns:
- the BulkPublishResponsecontaining publish status of each event. The "entryID" field inBulkPublishEntryinBulkPublishResponseFailedEntrywill be generated based on the order of events in theList.
 
- 
getBulkStatepublic <T> reactor.core.publisher.Mono<List<State<T>>> getBulkState(String storeName, List<String> keys, TypeRef<T> type) Retrieve bulk States based on their keys.- Specified by:
- getBulkStatein interface- DaprClient
- Type Parameters:
- T- The type of the return.
- Parameters:
- storeName- The name of the state store.
- keys- The keys of the State to be retrieved.
- type- The type of State needed as return.
- Returns:
- A Mono Plan for the requested State.
 
- 
getBulkStatepublic <T> reactor.core.publisher.Mono<List<State<T>>> getBulkState(String storeName, List<String> keys, Class<T> clazz) Retrieve bulk States based on their keys.- Specified by:
- getBulkStatein interface- DaprClient
- Type Parameters:
- T- The type of the return.
- Parameters:
- storeName- The name of the state store.
- keys- The keys of the State to be retrieved.
- clazz- The type of State needed as return.
- Returns:
- A Mono Plan for the requested State.
 
- 
executeStateTransactionpublic reactor.core.publisher.Mono<Void> executeStateTransaction(String storeName, List<TransactionalStateOperation<?>> operations) Execute a transaction.- Specified by:
- executeStateTransactionin interface- DaprClient
- Parameters:
- storeName- The name of the state store.
- operations- The operations to be performed.
- Returns:
- a Mono plan of type Void
 
- 
saveBulkStateSave/Update a list of states.- Specified by:
- saveBulkStatein interface- DaprClient
- Parameters:
- storeName- The name of the state store.
- states- The States to be saved.
- Returns:
- a Mono plan of type Void.
 
- 
saveStateSave/Update a state.- Specified by:
- saveStatein interface- DaprClient
- Parameters:
- storeName- The name of the state store.
- key- The key of the state.
- value- The value of the state.
- Returns:
- a Mono plan of type Void.
 
- 
saveStatepublic reactor.core.publisher.Mono<Void> saveState(String storeName, String key, String etag, Object value, StateOptions options) Save/Update a state.- Specified by:
- saveStatein interface- DaprClient
- Parameters:
- storeName- The name of the state store.
- key- The key of the state.
- etag- The etag to be used.
- value- The value of the state.
- options- The Options to use for each state.
- Returns:
- a Mono plan of type Void.
 
- 
deleteStateDelete a state.- Specified by:
- deleteStatein interface- DaprClient
- Parameters:
- storeName- The name of the state store.
- key- The key of the State to be removed.
- Returns:
- a Mono plan of type Void.
 
- 
deleteStatepublic reactor.core.publisher.Mono<Void> deleteState(String storeName, String key, String etag, StateOptions options) Delete a state.- Specified by:
- deleteStatein interface- DaprClient
- Parameters:
- storeName- The name of the state store.
- key- The key of the State to be removed.
- etag- Optional etag for conditional delete.
- options- Optional settings for state operation.
- Returns:
- a Mono plan of type Void.
 
- 
getSecretpublic reactor.core.publisher.Mono<Map<String,String>> getSecret(String storeName, String key, Map<String, String> metadata) Fetches a secret from the configured vault.- Specified by:
- getSecretin interface- DaprClient
- Parameters:
- storeName- Name of vault component in Dapr.
- key- Secret to be fetched.
- metadata- Optional metadata.
- Returns:
- Key-value pairs for the secret.
 
- 
getSecretpublic reactor.core.publisher.Mono<Map<String,String>> getSecret(String storeName, String secretName) Fetches a secret from the configured vault.- Specified by:
- getSecretin interface- DaprClient
- Parameters:
- storeName- Name of vault component in Dapr.
- secretName- Secret to be fetched.
- Returns:
- Key-value pairs for the secret.
 
- 
getBulkSecretFetches all secrets from the configured vault.- Specified by:
- getBulkSecretin interface- DaprClient
- Parameters:
- storeName- Name of vault component in Dapr.
- Returns:
- Key-value pairs for all the secrets in the state store.
 
- 
getBulkSecretpublic reactor.core.publisher.Mono<Map<String,Map<String, getBulkSecretString>>> (String storeName, Map<String, String> metadata) Fetches all secrets from the configured vault.- Specified by:
- getBulkSecretin interface- DaprClient
- Parameters:
- storeName- Name of vault component in Dapr.
- metadata- Optional metadata.
- Returns:
- Key-value pairs for all the secrets in the state store.
 
- 
getConfigurationpublic reactor.core.publisher.Mono<ConfigurationItem> getConfiguration(String storeName, String key) Retrieve a configuration based on a provided key.- Specified by:
- getConfigurationin interface- DaprClient
- Parameters:
- storeName- Name of the configuration store
- key- key of the configuration item which is to be retrieved
- Returns:
- Mono of the Configuration Item
 
- 
getConfigurationpublic reactor.core.publisher.Mono<ConfigurationItem> getConfiguration(String storeName, String key, Map<String, String> metadata) Retrieve a configuration based on a provided key.- Specified by:
- getConfigurationin interface- DaprClient
- Parameters:
- storeName- Name of the configuration store
- key- key of the configuration item which is to be retrieved
- metadata- optional metadata
- Returns:
- Mono of the Configuration Item
 
- 
getConfigurationpublic reactor.core.publisher.Mono<Map<String,ConfigurationItem>> getConfiguration(String storeName, String... keys) Retrieve Map of configurations based on a provided variable number of keys.- Specified by:
- getConfigurationin interface- DaprClient
- Parameters:
- storeName- Name of the configuration store
- keys- keys of the configurations which are to be retrieved
- Returns:
- Mono of Map of ConfigurationItems
 
- 
getConfigurationpublic reactor.core.publisher.Mono<Map<String,ConfigurationItem>> getConfiguration(String storeName, List<String> keys, Map<String, String> metadata) Retrieve Map of configurations based on a provided variable number of keys.- Specified by:
- getConfigurationin interface- DaprClient
- Parameters:
- storeName- Name of the configuration store
- keys- keys of the configurations which are to be retrieved
- metadata- optional metadata
- Returns:
- Mono of Map of ConfigurationItems
 
- 
subscribeConfigurationpublic reactor.core.publisher.Flux<SubscribeConfigurationResponse> subscribeConfiguration(String storeName, String... keys) Subscribe to the keys for any change.- Specified by:
- subscribeConfigurationin interface- DaprClient
- Parameters:
- storeName- Name of the configuration store
- keys- keys of the configurations which are to be subscribed
- Returns:
- Flux of SubscribeConfigurationResponseinstance
 
- 
subscribeConfigurationpublic reactor.core.publisher.Flux<SubscribeConfigurationResponse> subscribeConfiguration(String storeName, List<String> keys, Map<String, String> metadata) Subscribe to the keys for any change.- Specified by:
- subscribeConfigurationin interface- DaprClient
- Parameters:
- storeName- Name of the configuration store
- keys- keys of the configurations which are to be subscribed
- metadata- optional metadata
- Returns:
- Flux of SubscribeConfigurationResponseinstance
 
- 
unsubscribeConfigurationpublic reactor.core.publisher.Mono<UnsubscribeConfigurationResponse> unsubscribeConfiguration(String id, String storeName) Unsubscribe from previously subscribed keys.- Specified by:
- unsubscribeConfigurationin interface- DaprClient
- Parameters:
- id- subscription id returned by subscribeConfiguration API.
- storeName- Name of the configuration store.
- Returns:
- Mono of UnsubscribeConfigurationResponseinstance.
 
- 
tryLockpublic reactor.core.publisher.Mono<Boolean> tryLock(String storeName, String resourceId, String lockOwner, Integer expiryInSeconds) Tries to get a lock with an expiry.- Specified by:
- tryLockin interface- DaprPreviewClient
- Parameters:
- storeName- Name of the store
- resourceId- Lock key
- lockOwner- The identifier of lock owner
- expiryInSeconds- The time before expiry
- Returns:
- Whether the lock is successful
 
- 
unlockpublic reactor.core.publisher.Mono<UnlockResponseStatus> unlock(String storeName, String resourceId, String lockOwner) Unlocks a lock.- Specified by:
- unlockin interface- DaprPreviewClient
- Parameters:
- storeName- Name of the store
- resourceId- Lock key
- lockOwner- The identifier of lock owner
- Returns:
- Unlock result
 
 
-