Skip to main content

Mountain/IPC/Enhanced/ConnectionPool/
mod.rs

1
2//! # Connection pool
3//!
4//! Bounded IPC connection pool with health monitoring,
5//! lifetime / idle cleanup, and statistics. The
6//! `Pool::Struct` aggregator + giant impl lives in `Pool.rs`
7//! (tightly-coupled cluster); the per-connection state, the
8//! health-status enum, the config, the stats DTO, and the
9//! background health checker each live in their own sibling.
10
11pub mod ConnectionHandle;
12
13pub mod ConnectionHealth;
14
15pub mod HealthChecker;
16
17pub mod Pool;
18
19pub mod PoolConfig;
20
21pub mod PoolStats;