Uses of Class
io.dapr.client.domain.State
Packages that use State
-
Uses of State in io.dapr.client
Methods in io.dapr.client that return types with arguments of type StateModifier and TypeMethodDescriptionDaprClient.getBulkState(GetBulkStateRequest request, TypeRef<T> type)
Retrieve bulk States based on their keys.DaprClient.getBulkState(String storeName, List<String> keys, TypeRef<T> type)
Retrieve bulk States based on their keys.DaprClient.getBulkState(String storeName, List<String> keys, Class<T> clazz)
Retrieve bulk States based on their keys.DaprClientGrpc.getBulkState(GetBulkStateRequest request, TypeRef<T> type)
Retrieve bulk States based on their keys.DaprClientHttp.getBulkState(GetBulkStateRequest request, TypeRef<T> type)
Retrieve bulk States based on their keys.<T> reactor.core.publisher.Mono<State<T>>
DaprClient.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>>
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.<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>>
DaprClientGrpc.getState(GetStateRequest request, TypeRef<T> type)
Retrieve a State based on their key.<T> reactor.core.publisher.Mono<State<T>>
DaprClientHttp.getState(GetStateRequest request, TypeRef<T> type)
Retrieve a State based on their key.Methods in io.dapr.client with parameters of type StateModifier and TypeMethodDescription<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.Method parameters in io.dapr.client with type arguments of type StateModifier and TypeMethodDescriptionreactor.core.publisher.Mono<Void>
DaprClient.saveBulkState(String storeName, List<State<?>> states)
Save/Update a list of states. -
Uses of State in io.dapr.client.domain
Methods in io.dapr.client.domain that return StateMethods in io.dapr.client.domain that return types with arguments of type StateMethods in io.dapr.client.domain with parameters of type StateModifier and TypeMethodDescriptionSaveStateRequestBuilder.withStates(State<?>... states)
Deprecated.Method parameters in io.dapr.client.domain with type arguments of type StateModifier and TypeMethodDescriptionSaveStateRequestBuilder.withStates(List<State<?>> states)
Deprecated.Constructors in io.dapr.client.domain with parameters of type StateModifierConstructorDescriptionTransactionalStateOperation(TransactionalStateOperation.OperationType operationType, State<T> state)
Construct an immutable transactional state operation object.