async-timer

Build Status Crates.io Documentation dependency status

Timer facilities for Rust's async story

Minimal Rust version: 1.36

Timed

```rust

![feature(async_await)]

async fn job() { }

async fn dojob() { let work = unsafe { asynctimer::Timed::platformnewunchecked(job(), core::time::Duration::from_secs(1)) };

match work.await {
    Ok(_) => println!("I'm done!"),
    //You can retry by polling `expired`
    Err(expired) => println!("Job expired: {}", expired),
}

} ```

Interval

```rust

![feature(async_await)]

async fn job() { }

async fn doawhile() { let mut times: u8 = 0; let mut interval = asynctimer::Interval::platformnew(core::time::Duration::from_secs(1));

while times < 5 {
    job().await;
    interval = interval.await;
    times += 1;
}

} ```

Q&A

Q: When it is going to be async/await?

A: When async/await will become no_std