mirror of
https://github.com/async-rs/async-std.git
synced 2025-04-03 15:06:41 +00:00
Merge pull request #1044 from notgull/timeout_roundup
Round up timeout to the nearest millisecond for WASM
This commit is contained in:
commit
1855e858e6
1 changed files with 7 additions and 1 deletions
|
@ -84,7 +84,13 @@ mod timer {
|
||||||
|
|
||||||
impl Timer {
|
impl Timer {
|
||||||
pub(crate) fn after(dur: std::time::Duration) -> Self {
|
pub(crate) fn after(dur: std::time::Duration) -> Self {
|
||||||
Timer(TimeoutFuture::new(dur.as_millis() as u32))
|
// Round up to the nearest millisecond.
|
||||||
|
let mut timeout_ms = dur.as_millis() as u32;
|
||||||
|
if std::time::Duration::from_millis(timeout_ms as u64) < dur {
|
||||||
|
timeout_ms += 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
Timer(TimeoutFuture::new(timeout_ms))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue