Uses of Class
com.kingsrook.qqq.backend.core.state.AbstractStateKey
Packages that use AbstractStateKey
-
Uses of AbstractStateKey in com.kingsrook.qqq.backend.core.state
Subclasses of AbstractStateKey in com.kingsrook.qqq.backend.core.stateMethods in com.kingsrook.qqq.backend.core.state with parameters of type AbstractStateKeyModifier and TypeMethodDescription<T extends Serializable>
Optional<T> InMemoryStateProvider.get
(Class<? extends T> type, AbstractStateKey key) Get a block of data, under a key, from the state store.<T extends Serializable>
Optional<T> StateProviderInterface.get
(Class<? extends T> type, AbstractStateKey key) Get a block of data, under a key, from the state store.<T extends Serializable>
Optional<T> TempFileStateProvider.get
(Class<? extends T> type, AbstractStateKey key) Get a block of data, under a key, from the state store.<T extends Serializable>
voidInMemoryStateProvider.put
(AbstractStateKey key, T data) Put a block of data, under a key, into the state store.<T extends Serializable>
voidStateProviderInterface.put
(AbstractStateKey key, T data) Put a block of data, under a key, into the state store.<T extends Serializable>
voidTempFileStateProvider.put
(AbstractStateKey key, T data) Put a block of data, under a key, into the state store.void
InMemoryStateProvider.remove
(AbstractStateKey key) Remove a block of data, under a key, from the state store.void
StateProviderInterface.remove
(AbstractStateKey key) Remove a block of data, under a key, from the state store.void
TempFileStateProvider.remove
(AbstractStateKey key) Remove a block of data, under a key, from the state store.