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;
9pub mod compat_lock;
10mod heartbeat;
11mod network_event;
12
13pub use actr_node::{ActrNode, CredentialState, DiscoveryResult};
14pub use actr_system::ActrSystem;
15pub use compat_lock::{CompatLockFile, CompatLockManager, CompatibilityCheck, NegotiationEntry};
16pub use heartbeat::heartbeat_task;
17pub use network_event::{
18    DefaultNetworkEventProcessor, NetworkEvent, NetworkEventHandle, NetworkEventProcessor,
19    NetworkEventResult,
20};