algocline-app 0.42.0

algocline application layer — execution orchestration, package management
Documentation
//! Process-pool IPC layer for `host_mode=true` execution.
//!
//! This module provides the foundation types and dispatch helpers for the
//! pool worker protocol:
//!
//! - [`error`] — [`PoolError`] enum (thiserror-derived)
//! - [`protocol`] — [`PoolRequest`] / [`PoolResponse`] wire types (serde JSON line)
//! - [`client`] — [`PoolClient`] UDS client (connect + handshake + send_request)
//! - [`registry`] — [`PoolRegistry`] persistence + GC (registry.json)
//! - [`dispatch`] — worker spawn + UDS proxy orchestration (ST6)

pub mod client;
pub mod dispatch;
pub mod error;
pub mod protocol;
pub mod registry;

pub use client::PoolClient;
pub use error::PoolError;
pub use protocol::{PoolRequest, PoolResponse, PoolResponseData};
pub use registry::{PoolRegistry, PoolSessionEntry};