Function tokio::io::duplex

source ·
pub fn duplex(max_buf_size: usize) -> (DuplexStream, DuplexStream)
Expand description

Create a new pair of DuplexStreams that act like a pair of connected sockets.

The max_buf_size argument is the maximum amount of bytes that can be written to a side before the write returns Poll::Pending.