An extension of futures
.
For now, this crate provides - unsync unbounded publish subscribe channel - unsync unbounded cloneable stream/sink
And will provide in future - unsync bounded publish subscribe channel - sync unbounded publish subscribe channel - sync bounded publish subscribe channel - unsync bounded cloneable stream/sink - sync unbounded cloneable stream/sink - sync bounded cloneable stream/sink
An usage is almost same with futures::unsync::mpsc::unbounded
.
```rust use ex_futures::unsync::pubsub::unbounded;
fn main() {
let (tx, rx) = unbounded::
tx.send(1).wait().unwrap();
assert_eq!(rx.next().unwrap().map(|i| *i), Ok(1));
assert_eq!(rx2.next().unwrap().map(|i| *i), Ok(1));
} ```
```rust use ex_futures::StreamExt;
fn main() { let stream = genincstream();;
let cloneable = stream.unsync_cloneable();
let cloneable2 = cloneable.clone();
assert_eq!(cloneable.map(|i| *i).collect().wait().unwrap(), [0, 1, 2, 3]);
assert_eq!(cloneable2.map(|i| *i).collect().wait().unwrap(), [0, 1, 2, 3]);
}