atomr_core/util/mod.rs
1//! Core utilities. akka.net: `src/core/Akka/Util`.
2//!
3//! Small, focused helpers — BoundedQueue, monotonic clock, TypeId registry —
4//! used throughout the actor subsystem.
5
6mod bounded_queue;
7mod clock;
8mod snapshot;
9mod type_registry;
10
11pub use bounded_queue::BoundedQueue;
12pub use clock::{MonotonicClock, SystemClock};
13pub use snapshot::Snapshot;
14pub use type_registry::TypeRegistry;