Implements: IReconfigurable, IStateStore
Description
Remember: This implementation is not suitable for synchronization of distributed processes.
Configuration parameters
options:
- timeout: default caching timeout in milliseconds (default: disabled)
Constructors
Creates a new instance of the state store.
NewEmptyMemoryStateStoreT any
Instance methods
Configure
Configures component by passing configuration parameters.
(c *MemoryStateStore[T]) Configure(ctx context.Context, config *cconf.ConfigParams)
- ctx: context.Context - operation context.
- config: ConfigParams - configuration parameters to be set.
Delete
Deletes a state from the store by its key.
(c *MemoryStateStore[T]) Delete(ctx context.Context, correlationId string, key string) any
- ctx: context.Context - operation context.
- correlationId: string - (optional) transaction id to trace execution through a call chain.
- key: string - a unique value key.
- return: any - removed item
Load
Loads state from the store using its key. If value is missing in the store it returns null.
(c *MemoryStateStore[T]) Load(correlationId string, key string) any
- correlationId: string - (optional) transaction id to trace execution through a call chain.
- key: string - a unique state key.
- return: any - the state value or
null
if value wasn’t found.
LoadBulk
Loads an array of states from the store using their keys.
(c *MemoryStateStore[T]) LoadBulk(ctx context.Context, correlationId string, keys []string) []*StateValue
- ctx: context.Context - operation contex.
- correlationId: string - (optional) transaction id to trace execution through call chain.
- keys: []string - unique state keys.
- returns: []*StateValue - an array with state values and their corresponding keys.
Save
Saves state into the store.
(c *MemoryStateStore[T]) Save(ctx context.Context, correlationId string, key string, value any) any
- ctx: context.Context - operation contex.
- correlationId: string - (optional) transaction id to trace execution through a call chain.
- key: string - a unique state key.
- value: any - a state value.
- returns: any - execution duration in milliseconds.
Examples
store := NewMemoryStateStore[MyType]()
value := store.Load(context.Background(), "123", "key1")
...
store.Save(context.Background(), "123", "key1", MyType{})