Expand description
Fixed-capacity ring buffer of owned snapshots for RealtimeAsync mode.
SnapshotRing stores Arc<OwnedSnapshot> slots with single-producer
push and multi-consumer read. This is the spike implementation using
Mutex per slot; production will replace Arc with epoch-based pinning.
Structsยง
- Snapshot
Ring - A fixed-capacity ring buffer of
Arc<OwnedSnapshot>.