toml
[dependencies]
executor = "0.5"
#![no_std]
+ alloc
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 use std::thread; use std::time::Duration;
fn main() { blockon(async { println!("hello"); asyncstd::task::sleep(Duration::from_secs(1)).await; println!("world!"); }) }
fn block_on(f:impl std::future::Future+Sync+Send+'static){ let complete = std::sync::Arc::new(core::sync::atomic::AtomicBool::new(false)); let ender = complete.clone(); thread::spawn(||{ executor::spawn(async move { f.await; ender.store(true, core::sync::atomic::Ordering::Release); }); }); while !complete.load(core::sync::atomic::Ordering::Acquire) {} } ```
Write your own with this trait
rust
pub trait GlobalExecutor {
fn spawn(&mut self, future: Box<dyn Future<Output = ()> + 'static + Send + Unpin>);
}
rust
executor::set_global_executor(MY_EXECUTOR);
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.