Crates.io | smol-timeout2 |
lib.rs | smol-timeout2 |
version | 0.6.1 |
source | src |
created_at | 2024-08-28 19:45:27.167868 |
updated_at | 2024-08-28 19:45:27.167868 |
description | A way to poll a future until it or a timer completes. |
homepage | https://github.com/nullchinchilla/smol-timeout2 |
repository | https://github.com/nullchinchilla/smol-timeout2 |
max_upload_size | |
id | 1355187 |
size | 31,252 |
smol-timeout
A way to poll a future until it or a timer completes.
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));
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/.