Expand description
Async networking primitives built on top of non-async mio.
This module provides:
tcp_stream– async-friendly wrappers aroundmio::net::TcpStream, exposingAsyncRead/AsyncWriteand configurable timeouts.udp_socket– a UDP wrapper that integrates with the shared event listener and also implementsAsyncRead/AsyncWrite.io_event_listenerandtimeouts– internal pieces used to multiplex I/O readiness and timeout handling.
The implementation is intentionally thin so you can use these building blocks directly or as part of a custom async runtime.