interprocess 2.2.2

Interprocess communication toolkit
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use super::super::named_pipe::local_socket as np_impl;
use crate::local_socket::{prelude::*, Listener, ListenerOptions, Name, Stream};
use std::io;

#[inline]
pub fn from_options(options: ListenerOptions<'_>) -> io::Result<Listener> {
	options
		.create_sync_as::<np_impl::Listener>()
		.map(Listener::from)
}

pub fn connect(name: Name<'_>) -> io::Result<Stream> {
	np_impl::Stream::connect(name).map(Stream::from)
}