actr_runtime/lifecycle/
mod.rs

1//! Lifecycle management layer (non-architectural layer)
2//!
3//! Responsible for Actor system lifecycle management:
4//! - ActrSystem: Initialization and configuration
5//! - ActrNode<W>: Generic node (bound to Workload Type)
6
7mod actr_node;
8mod actr_system;
9
10pub use actr_node::ActrNode;
11pub use actr_system::ActrSystem;