Timer facilities for Rust's async story
Minimal Rust version: 1.36
```rust 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),
}
} ```
```rust 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.as_mut().await;
times += 1;
}
} ```
Q: When it is going to be async/await?
A: When async/await will become no_std