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

/// Declares the policy for what producers should do when consumers are lagging.
///
#[derive(Copy, Clone)]
pub enum WaitStrategy {
    /// *Default*: Wait for all subscribers to read the event before overwriting it.
    AllSubscribers,

    /// Don't wait for any reason and overwrite when ready.
    NoWait,

    /// Wait for a specified duration of time before overwriting it.
    WaitForDuration(Duration),
}

#[cfg(test)]
mod tests {
    use crate::{Eventador, WaitStrategy};

    #[test]
    fn test_wait_for_all_subscribers() {
        let eventbus = Eventador::new(2).unwrap();

        let subscriber = eventbus.subscribe::<usize>();

        let _publish_thread = std::thread::spawn(move || {
            for i in 0..3 {
                let i: usize = i;
                eventbus.publish(i)
            }
        });

        std::thread::sleep(std::time::Duration::from_secs(1));
        let i: usize = 0;
        let msg = subscriber.recv();
        assert_eq!(i, *msg);
    }

    #[test]
    fn test_no_wait() {
        let eventbus = Eventador::with_strategy(2, WaitStrategy::NoWait).unwrap();

        let subscriber = eventbus.subscribe::<usize>();

        let _publish_thread = std::thread::spawn(move || {
            for i in 0..3 {
                let i: usize = i;
                eventbus.publish(i);
            }
        });

        std::thread::sleep(std::time::Duration::from_secs(1));
        let i: usize = 2;
        let msg = subscriber.recv();
        assert_eq!(i, *msg);
    }

    #[test]
    fn test_wait_for_duration() {
        let eventbus = Eventador::with_strategy(
            2,
            WaitStrategy::WaitForDuration(std::time::Duration::from_secs(1)),
        )
        .unwrap();

        let subscriber1 = eventbus.subscribe::<usize>();
        let subscriber2 = eventbus.subscribe::<usize>();

        let _publish_thread = std::thread::spawn(move || {
            for i in 0..3 {
                let i: usize = i;
                eventbus.publish(i);
            }
        });

        let i: usize = 0;
        let msg = subscriber1.recv();
        assert_eq!(i, *msg);

        std::thread::sleep(std::time::Duration::from_secs(3));
        let i: usize = 2;
        let msg = subscriber2.recv();
        assert_eq!(i, *msg);
    }
}