#future #async-await #async #await #async-io

smol-timeout

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

6 releases (breaking)

0.6.0 Oct 1, 2020
0.5.0 Sep 5, 2020
0.4.0 Aug 27, 2020
0.3.0 Aug 9, 2020
0.1.0 Jun 1, 2020

#95 in #await

Download history 5084/week @ 2024-07-22 3146/week @ 2024-07-29 4801/week @ 2024-08-05 4045/week @ 2024-08-12 4084/week @ 2024-08-19 2922/week @ 2024-08-26 4194/week @ 2024-09-02 3623/week @ 2024-09-09 5474/week @ 2024-09-16 5582/week @ 2024-09-23 5755/week @ 2024-09-30 6630/week @ 2024-10-07 4758/week @ 2024-10-14 6170/week @ 2024-10-21 5616/week @ 2024-10-28 4269/week @ 2024-11-04

21,044 downloads per month
Used in 52 crates (33 directly)

MPL-2.0 license

12KB

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/.

Dependencies

~4–15MB
~158K SLoC