Skip to main content

DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/IPC/Connection/
mod.rs

1//! Connection lifecycle, pooling, and health monitoring for IPC. Submodules:
2//! `Manager` (pool + handles), `Types` (`ConnectionHandle`, `Stats`),
3//! `Health` (background checker). Callers spell the full path; no `pub use`.
4
5pub mod Health;
6
7pub mod Manager;
8
9pub mod Types;