tokio_retry2/strategy/
fixed_interval.rs

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
use std::iter::Iterator;
use tokio::time::Duration;

/// A retry strategy driven by a fixed interval.
#[derive(Debug, Clone)]
pub struct FixedInterval {
    duration: Duration,
}

impl FixedInterval {
    /// Constructs a new fixed interval strategy,
    /// given a duration in milliseconds.
    pub const fn from_millis(millis: u64) -> FixedInterval {
        FixedInterval {
            duration: Duration::from_millis(millis),
        }
    }

    /// Constructs a new fixed interval strategy.
    pub const fn new(duration: Duration) -> FixedInterval {
        FixedInterval { duration }
    }
}

impl Iterator for FixedInterval {
    type Item = Duration;

    fn next(&mut self) -> Option<Duration> {
        Some(self.duration)
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn returns_some_fixed() {
        let mut s = FixedInterval::new(Duration::from_millis(123));

        assert_eq!(s.next(), Some(Duration::from_millis(123)));
        assert_eq!(s.next(), Some(Duration::from_millis(123)));
        assert_eq!(s.next(), Some(Duration::from_millis(123)));
    }
}