bombay-behavior 0.11.0

Composable, statically typed actor behavior algebra
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Pure supervision state machines and bookkeeping domains.

mod fleet;
mod incarnation;
mod restart_budget;

pub(super) use fleet::Fleet;
pub use fleet::FleetError;
pub use incarnation::IncarnationPhase;
pub(super) use incarnation::{
    Incarnation, IncarnationEffects, IncarnationError, IncarnationStopEffects,
};
pub(super) use restart_budget::RestartBudget;