Skip to main content

DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/IPC/Enhanced/ConnectionPool/
mod.rs

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