interprocess_docfix/nonblocking/
mod.rs

1//! Non-blocking wrappers for blocking interprocess communication primitives.
2//!
3//! Blocking is unacceptable in an async context, as it is the very problem that asynchrony aims to mitigate. This module contains wrappers for the base interprocess primitives, allowing their usage in an asyncronous runtime.
4//!
5//! The layout of this module aims to closely resemble the crate root, in that all the modules here mirror their blocking counterparts – check them out for usage examples and details about the differences you may encounter when porting blocking code to an async architecture.
6
7mod imports;
8pub mod local_socket;