Skip to main content

xs/processor/lifecycle/
mod.rs

1//! Shared two-slot compaction state machine for actor / service / action
2//! lifecycles. See ADR 0005 for the topic vocabulary and the algorithm
3//! this implements.
4
5mod slots;
6
7#[cfg(test)]
8mod tests;
9
10pub use slots::{Event, Slots, ThresholdPick};