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;
9mod heartbeat;
10
11pub use actr_node::{ActrNode, CredentialState};
12pub use actr_system::ActrSystem;
13pub use heartbeat::heartbeat_task;