IpcFace

Type Alias IpcFace 

Source
pub type IpcFace = StreamFace<Box<dyn AsyncRead + Send + Sync + Unpin>, Box<dyn AsyncWrite + Send + Sync + Unpin>, TlvCodec>;
Expand description

Platform-agnostic NDN face over the management IPC socket.

On Unix this is backed by a UnixStream; on Windows by a Named Pipe. The concrete type is the same on all platforms.

Aliased Typeยง

pub struct IpcFace { /* private fields */ }