Expand description
Process-pool IPC layer for host_mode=true execution.
This module provides the foundation types and dispatch helpers for the pool worker protocol:
error—PoolErrorenum (thiserror-derived)protocol—PoolRequest/PoolResponsewire types (serde JSON line)client—PoolClientUDS client (connect + handshake + send_request)registry—PoolRegistrypersistence + GC (registry.json)dispatch— worker spawn + UDS proxy orchestration (ST6)
Re-exports§
pub use client::PoolClient;pub use error::PoolError;pub use protocol::PoolRequest;pub use protocol::PoolResponse;pub use protocol::PoolResponseData;pub use registry::PoolRegistry;pub use registry::PoolSessionEntry;