summaryrefslogtreecommitdiffstats
path: root/tokio-util/src/time/delay_queue.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio-util/src/time/delay_queue.rs')
-rw-r--r--tokio-util/src/time/delay_queue.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/tokio-util/src/time/delay_queue.rs b/tokio-util/src/time/delay_queue.rs
index b23c24e6..92c922b8 100644
--- a/tokio-util/src/time/delay_queue.rs
+++ b/tokio-util/src/time/delay_queue.rs
@@ -141,7 +141,7 @@ pub struct DelayQueue<T> {
delay: Option<Delay>,
/// Wheel polling state
- poll: wheel::Poll,
+ wheel_now: u64,
/// Instant at which the timer starts
start: Instant,
@@ -251,7 +251,7 @@ impl<T> DelayQueue<T> {
slab: Slab::with_capacity(capacity),
expired: Stack::default(),
delay: None,
- poll: wheel::Poll::new(0),
+ wheel_now: 0,
start: Instant::now(),
}
}
@@ -733,11 +733,11 @@ impl<T> DelayQueue<T> {
let now = crate::time::ms(delay.deadline() - self.start, crate::time::Round::Down);
- self.poll = wheel::Poll::new(now);
+ self.wheel_now = now;
}
// We poll the wheel to get the next value out before finding the next deadline.
- let wheel_idx = self.wheel.poll(&mut self.poll, &mut self.slab);
+ let wheel_idx = self.wheel.poll(self.wheel_now, &mut self.slab);
self.delay = self.next_deadline().map(sleep_until);