Generator-based streams for Rust and futures 0.3.
Rust ecosystem is currently moving towards asynchronous computation based on Future trait and friends. One part of this is enabling us to write Futures-based code in synchronous fashion using async/await.
This is only for Future
, however. How do you write a complicated asynchronous iterator (Stream, that is) without rolling enum-based state-machine? async yield functions are supposed to give us a hand eventually. But until such time comes...
Just write your own generator and wrap it in one of GenStreams.
You need the latest Rust nightly, tested to be working as of nightly-2019-03-02
.
Add this to Cargo.toml:
toml
gen-stream = "0.1"
```rust
use futures::{ compat::{Stream01CompatExt}, executor::blockon, prelude::*, task::Poll, }; use genstream::{gen_await, GenStreamNoReturn}; use std::{ops::Generator, pin::Pin, time::{Duration, SystemTime}}; use tokio::timer::Interval;
fn currenttime() -> impl Generator
loop {
let (_, s) = gen_await!(i.into_future());
i = s;
yield Poll::Ready(SystemTime::now());
}
}
}
fn main() { let mut timestreamer = GenStreamNoReturn::from(currenttime());
for _ in 0..10 {
let current_time = block_on(time_streamer.next());
println!("Current time is {:?}", current_time);
}
} ```
License: MIT/Apache-2.0