A library for working with timers, timeouts, and intervals with the futures
crate.
```toml
[dependencies] futures-timer = "0.1" ```
An example of using a Delay
is:
```rust use std::time::Duration;
use futures::prelude::*; use futures_timer::Delay;
async fn main() -> Result<(), Box
And using an Interval
:
```rust use std::time::Duration;
use futures::prelude::*; use futures_timer::Interval;
async fn main() -> Result<(), Box
Or timing out a future
```rust use std::time::Duration;
use futures_timer::FutureExt;
async fn main() -> Result<(), Box
This project is licensed under either of
at your option.
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.