parity-tokio-ipc
This crate abstracts interprocess transport for UNIX/Windows. On UNIX it utilizes unix sockets (tokio_uds
crate) and named pipe on windows (experimental tokio-named-pipes
crate).
Endpoint is transport-agnostic interface for incoming connections:
let endpoint = new.unwrap;
endpoint.incoming.for_each;
And IpcStream is transport-agnostic io:
let endpoint = new.unwrap;
endpoint.incoming.for_each;
License
parity-tokio-ipc
is primarily distributed under the terms of both the MIT
license and the Apache License (Version 2.0), with portions covered by various
BSD-like licenses.
See LICENSE-APACHE, and LICENSE-MIT for details.