multi-consumer-stream 0.4.0

Provides a handle to streams, allowing multiple different tasks to read from the same underlying stream.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Provides a multi-consumer-stream, that allows to route certain items of a wrapped stream to independent handles.
#![deny(missing_docs)]

extern crate futures_core;
extern crate indexmap;

#[cfg(test)]
extern crate atm_async_utils;
#[cfg(test)]
extern crate futures;

mod shared;
// pub mod sync;
mod unsync;

pub use unsync::*;