#executor #async-executor #single-threaded #suitable #systems #embedded-systems

simple-async-local-executor

A single-threaded polling-based executor suitable for use in games, embedded systems or WASM

1 unstable release

0.1.0 Apr 30, 2021

#1765 in Asynchronous

24 downloads per month

MIT/Apache

16KB
240 lines

simple async local executor

Crates.io Docs.rs Build Status

An Enlightware® software.

Overview

A single-threaded polling-based executor suitable for use in games, embedded systems or WASM. This executor can be useful when the number of tasks is small or if a small percentage is blocked. Being polling-based, in the general case it trades off efficiency for simplicity and does not require any concurrency primitives such as Arc, etc.

Usage

To use this crate, first add this to your Cargo.toml:

[dependencies]
simple-async-local-executor = "0.1.0"

Then, see the documentation for more details.

License

Licensed under either of

at your option.

Contribution

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

Dependencies

~1MB
~16K SLoC