Expand description
Task persistence trait and in-memory implementation.
TaskStore abstracts task persistence so that the server framework can
be backed by any storage engine. InMemoryTaskStore provides a simple
HashMap-based implementation suitable for testing and single-process
deployments.
Structs§
- InMemory
Task Store - In-memory
TaskStorebacked by aHashMapunder aRwLock. - Task
Store Config - Configuration for
InMemoryTaskStore.