Expand description
In-memory EventStore implementation for the kernel.
Append is atomic (all or nothing); scan returns events in ascending seq order.
Structsยง
- InMemory
Event Store - In-memory event store: one log per run, seq assigned on append.
- Shared
Event Store - Shared event store: wraps
Arc<InMemoryEventStore>so graph and Kernel can share the same log.