31 releases (stable)

2.4.1 Dec 11, 2023
2.4.0 Nov 23, 2023
2.3.1 Oct 28, 2022
2.2.0 Jun 20, 2022
0.2.3 Aug 28, 2020

#630 in Asynchronous

Download history 285658/week @ 2024-07-21 270256/week @ 2024-07-28 292232/week @ 2024-08-04 292850/week @ 2024-08-11 286484/week @ 2024-08-18 314902/week @ 2024-08-25 304889/week @ 2024-09-01 303238/week @ 2024-09-08 280788/week @ 2024-09-15 315724/week @ 2024-09-22 317445/week @ 2024-09-29 339954/week @ 2024-10-06 325193/week @ 2024-10-13 338899/week @ 2024-10-20 300582/week @ 2024-10-27 403403/week @ 2024-11-03

1,385,726 downloads per month
Used in 2,804 crates (51 directly)

Apache-2.0 OR MIT

24KB
352 lines

async-global-executor

API Docs Build status Downloads

A global executor built on top of async-executor and async-io

Features

  • async-io: if enabled, async-global-executor will use async_io::block_on instead of futures_lite::future::block_on internally. this is preferred if your application also uses async-io.
  • blocking: enable the use of the blocking crate through async_global_executor::spawn_blocking.
  • tokio: if enabled, async-global-executor will ensure that all tasks that you will spawn run in the context of a tokio 1.0 runtime, spawning a new one if required.
  • tokio03: if enabled, async-global-executor will ensure that all tasks that you will spawn run in the context of a tokio 0.3 runtime, spawning a new one if required.
  • tokio02: if enabled, async-global-executor will ensure that all tasks that you will spawn run in the context of a tokio 0.2 runtime, spawning a new one if required.

Examples

# use futures_lite::future;

// spawn a task on the multi-threaded executor
let task1 = async_global_executor::spawn(async {
    1 + 2
});
// spawn a task on the local executor (same thread)
let task2 = async_global_executor::spawn_local(async {
    3 + 4
});
let task = future::zip(task1, task2);

// run the executor
async_global_executor::block_on(async {
    assert_eq!(task.await, (3, 7));
});

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~3–13MB
~159K SLoC