Uses of Class
io.dapr.client.domain.StateOptions
Packages that use StateOptions
- 
Uses of StateOptions in io.dapr.clientMethods in io.dapr.client with parameters of type StateOptionsModifier 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.domainMethods in io.dapr.client.domain that return StateOptionsModifier and TypeMethodDescriptionState.getOptions()Retrieve the Options used for saving the state.DeleteStateRequest.getStateOptions()GetStateRequest.getStateOptions()Methods in io.dapr.client.domain with parameters of type StateOptionsModifier and TypeMethodDescriptionDeleteStateRequest.setStateOptions(StateOptions stateOptions) GetStateRequest.setStateOptions(StateOptions stateOptions) Constructors in io.dapr.client.domain with parameters of type StateOptionsModifierConstructorDescriptionState(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.