toml
[dependencies]
executor = "0.1"
#![no_std]
and minimally uses alloc
(Box
and Arc
)A web assembly example
```rust [nomangle] pub fn main() -> () { executor::spawn(async { consolelog("Hello"); settimeout(1000).await; consolelog("World!"); }); }
fn set_timeout(milliseconds:u32) -> TimeoutFuture { // create a timeout future and store globally }
[nomangle] pub fn timeoutcomplete() -> () { // find your timeout future and wake it's waker } ```
Want to use async-std?
```rust async fn run() { println!("hello"); asyncstd::task::sleep(std::time::Duration::fromsecs(1)).await; println!("world!"); complete::mark_complete(); }
fn main() -> () { std::thread::spawn(move || { executor::spawn(run()); }); complete::blockuntilcomplete(); } ```
This project is licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in executor
by you, as defined in the Apache-2.0 license, shall be
dual licensed as above, without any additional terms or conditions.