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
use Delay;
use clock;
use futures::{Future, Stream, Poll};
use std::time::{Instant, Duration};
#[derive(Debug)]
pub struct Interval {
    
    delay: Delay,
    
    duration: Duration,
}
impl Interval {
    
    
    
    
    
    
    
    
    
    
    pub fn new(at: Instant, duration: Duration) -> Interval {
        assert!(duration > Duration::new(0, 0), "`duration` must be non-zero.");
        Interval::new_with_delay(Delay::new(at), duration)
    }
    
    
    
    
    
    
    
    
    
    pub fn new_interval(duration: Duration) -> Interval {
        Interval::new(clock::now() + duration, duration)
    }
    pub(crate) fn new_with_delay(delay: Delay, duration: Duration) -> Interval {
        Interval {
            delay,
            duration,
        }
    }
}
impl Stream for Interval {
    type Item = Instant;
    type Error = ::Error;
    fn poll(&mut self) -> Poll<Option<Self::Item>, Self::Error> {
        
        let _ = try_ready!(self.delay.poll());
        
        let now = self.delay.deadline();
        
        
        self.delay.reset(now + self.duration);
        
        Ok(Some(now).into())
    }
}