Skip to main content

Mountain/IPC/Enhanced/ConnectionPool/
mod.rs

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