summaryrefslogtreecommitdiff
path: root/README.md
blob: c039fc1eb8e72e528c23e6b7539044108b327598 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Rust async playground

## Notes

Research started in 2019 - https://users.rust-lang.org/t/designing-an-async-flow-of-data/29148 and got pointed to `Stream` and `Sink` which are the appropriate abstractions for async *iteration*.

They weren't stable at the time, but seem to be maturing in the `futures` crate:

https://docs.rs/futures/0.3.6/futures/sink/trait.Sink.html

https://docs.rs/futures/0.3.6/futures/stream/trait.Stream.html

This is the relevant chapter in the Rust Async Book - https://rust-lang.github.io/async-book/05_streams/02_iteration_and_concurrency.html

Meanwhile it seems some features aren't fully stable in Rust just yet. Some crates provide relevant functionality

https://github.com/taiki-e/futures-async-stream

https://github.com/tokio-rs/async-stream