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 provide the chunked buffer pool, the SPSC ring,
5//! and the reactor. The reactor module defines a
6//! [`Transport`](reactor::Transport) trait so that callers can plug
7//! in alternative wire transports (TCP and QUIC both ship) without
8//! changing the connection state machine.
9
10pub mod cbuf;
11pub mod mbuf;
12pub mod reactor;