orbit-rs 0.1.0

Fleet-aware shared-memory rings over POSIX shared memory.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Cursor and walking primitives for Orbit rings.
//!
//! This module owns the generic "walk counters from cursor to head"
//! semantics shared by event streams, cache compaction, metrics, and
//! future ring-backed substrates. Semantic layers decode frames after
//! this layer has handled wraparound, missing slots, and cursor advance.

mod poll;
mod source;
mod state;
mod walk;

pub use poll::{RingLoss, RingPoll};
pub use source::RingFrameSource;
pub use state::RingCursor;
pub use walk::poll_ring;