coglet 0.18.0

High-performance prediction server for Cog ML models
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! IPC bridge for coglet parent-worker communication.
//!
//! This module provides the wire protocol and codec for communication between
//! the coglet orchestrator (parent) and worker subprocess.
//!
//! # Architecture
//!
//! - **protocol**: Message types (ControlRequest/Response, SlotRequest/Response)
//! - **codec**: JSON framing codec for AsyncRead/AsyncWrite

pub mod codec;
pub mod protocol;
pub mod transport;