rzmq 0.5.16

High performance, fully asynchronous, safe pure-Rust implementation of ZeroMQ (ØMQ) messaging with io_uring and TCP Cork acceleration on Linux.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![cfg(feature = "io-uring")]

pub mod buffer_manager;
pub mod connection_handler;
pub mod ops;
pub mod send_buffer_pool;
pub mod signaling_op_sender;
pub mod worker;
pub mod zmtp_handler;

pub use connection_handler::{ProtocolHandlerFactory, WorkerIoConfig};
pub use ops::{UringOpCompletion, UringOpRequest, UserData};