async-select-all

Apache-2.0 licensed Minimum rustc version Crate API

A futures library adapter for selecting over a list of futures.

Usage

```Rust use asyncselectall::SelectAll; use futures::executor::block_on;

async fn inc(i: i32) -> i32 { i + 1 }

fn main() { let futures = vec![inc(10), inc(5)]; let mut selectall = SelectAll::from(futures); let vec = blockon(async { let mut vec = Vec::withcapacity(selectall.len()); while !selectall.isempty() { let val = selectall.select().await; vec.push(val) } vec.sort(); vec }); asserteq!(vec, vec![6, 11]); } ```

Rust version requirements

async-select-all works on rust 1.37 or later.

License

This project is licensed under the Apache-2.0 license (LICENSE or http://www.apache.org/licenses/LICENSE-2.0).

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in async-select-all by you, shall be licensed as Apache-2.0, without any additional terms or conditions.