smol-timeout

Crates.iosmol-timeout
lib.rssmol-timeout
version0.6.0
sourcesrc
created_at2020-06-01 23:51:56.436755
updated_at2020-10-01 00:52:01.37829
descriptionA way to poll a future until it or a timer completes.
homepagehttps://github.com/r3v2d0g/smol-timeout
repositoryhttps://github.com/r3v2d0g/smol-timeout
max_upload_size
id248935
size31,086
(jjl)

documentation

https://docs.rs/smol-timeout

README

smol-timeout

img img img

A way to poll a future until it or a timer completes.

Example

use async_io::Timer;
use smol_timeout::TimeoutExt;
use std::time::Duration;

let foo = async {
    Timer::new(Duration::from_millis(250)).await;
    24
};

let foo = foo.timeout(Duration::from_millis(100));
assert_eq!(foo.await, None);

let bar = async {
    Timer::new(Duration::from_millis(100)).await;
    42
};

let bar = bar.timeout(Duration::from_millis(250));
assert_eq!(bar.await, Some(42));

License

This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.

Commit count: 13

cargo fmt