Skip to main content

Mountain/IPC/Connection/
mod.rs

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