eventador 0.0.18

lock-free pub/sub event-bus with sync and async APIs
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crossbeam::sync::Unparker;

pub(crate) trait Alertable {
    fn alert(&self);
}

impl Alertable for Unparker {
    fn alert(&self) {
        self.unpark();
    }
}