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
//! Tick and epoch helpers for Orbit frame versions.
//!
//! Ring counters answer "where in this ring did the write land?".
//! An [`OrbitEpoch`] answers "when did this sample claim to be
//! captured?". Keeping that distinction explicit lets semantic layers
//! use `Frame::ver` consistently without making the ring itself know
//! about clocks.

mod epoch;

pub use epoch::OrbitEpoch;