atomr-core 0.3.0

Actors, supervision, dispatch, mailboxes, scheduler, FSM, event stream, and coordinated shutdown — the core of the atomr actor runtime.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Core utilities.
//!
//! Small, focused helpers — BoundedQueue, monotonic clock, TypeId registry —
//! used throughout the actor subsystem.

mod bounded_queue;
mod clock;
mod snapshot;
mod type_registry;

pub use bounded_queue::BoundedQueue;
pub use clock::{MonotonicClock, SystemClock};
pub use snapshot::Snapshot;
pub use type_registry::TypeRegistry;