Skip to main content

dynomite/io/
mod.rs

1//! I/O substrate: chunked buffer pool, fixed-size SPSC ring, and a
2//! transport abstraction layered on tokio.
3//!
4//! The submodules replace the C engine's `dyn_mbuf`, `dyn_cbuf`, and
5//! the per-platform `src/event/` reactor. The reactor module defines a
6//! [`Transport`](reactor::Transport) trait so that downstream stages can
7//! plug in alternative wire transports (TCP today, QUIC in Stage 9)
8//! without changing the connection state machine.
9
10pub mod cbuf;
11pub mod mbuf;
12pub mod reactor;