Uses of Class
io.dapr.client.domain.StateOptions
-
Uses of StateOptions in io.dapr.client
Modifier and TypeMethodDescriptionreactor.core.publisher.Mono<Void>
DaprClient.deleteState
(String storeName, String key, String etag, StateOptions options) Delete a state.<T> reactor.core.publisher.Mono<State<T>>
DaprClient.getState
(String storeName, String key, StateOptions options, TypeRef<T> type) Retrieve a State based on their key.<T> reactor.core.publisher.Mono<State<T>>
DaprClient.getState
(String storeName, String key, StateOptions options, Class<T> clazz) Retrieve a State based on their key.reactor.core.publisher.Mono<Void>
Save/Update a state. -
Uses of StateOptions in io.dapr.client.domain
Modifier and TypeMethodDescriptionState.getOptions()
Retrieve the Options used for saving the state.DeleteStateRequest.getStateOptions()
GetStateRequest.getStateOptions()
Modifier and TypeMethodDescriptionDeleteStateRequest.setStateOptions
(StateOptions stateOptions) GetStateRequest.setStateOptions
(StateOptions stateOptions) ModifierConstructorDescriptionState
(String key, String etag, StateOptions options) Create an immutable state reference to be retrieved or deleted.State
(String key, T value, String etag, StateOptions options) Create an immutable state.Create an immutable state.