1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
use core::future::Future;
use core::{task, time};
use core::pin::Pin;
use crate::timer::Timer;
use crate::timer::Platform as PlatformTimer;
#[must_use = "Interval does nothing unless polled"]
pub struct Interval<T=PlatformTimer> {
    timer: T,
    pub interval: time::Duration,
}
impl Interval {
    #[inline(always)]
    pub fn platform_new(interval: time::Duration) -> Self {
        Interval::<PlatformTimer>::new(interval)
    }
}
impl<T: Timer> Interval<T> {
    pub fn new(interval: time::Duration) -> Self {
        Self {
            timer: T::new(interval),
            interval,
        }
    }
    #[inline(always)]
    pub fn cancel(&mut self) {
        self.timer.cancel()
    }
    pub fn restart(&mut self) {
        let interval = self.interval;
        self.timer.restart(interval);
    }
    #[inline(always)]
    pub fn wait<'a>(&'a mut self) -> impl Future<Output=()> + 'a {
        self
    }
}
impl<T: Timer> Future for &'_ mut Interval<T> {
    type Output = ();
    fn poll(mut self: Pin<&mut Self>, ctx: &mut task::Context) -> task::Poll<Self::Output> {
        match Future::poll(Pin::new(&mut self.timer), ctx) {
            task::Poll::Ready(()) => {
                self.restart();
                task::Poll::Ready(())
            },
            task::Poll::Pending => task::Poll::Pending,
        }
    }
}
#[cfg(feature = "stream")]
impl<T: Timer> futures_core::stream::Stream for Interval<T> {
    type Item = ();
    #[inline]
    fn poll_next(self: Pin<&mut Self>, ctx: &mut task::Context) -> task::Poll<Option<Self::Item>> {
        let mut this = self.get_mut();
        Future::poll(Pin::new(&mut this), ctx).map(|res| Some(res))
    }
}