Rust implementation of observer design pattern. Dispatch is immediate and multicast. For delayed handling you can use shrev.
More information about this crate can be found in the crate documentation.
To use eventd
, first add this to your Cargo.toml
:
toml
[dependencies]
eventd = "0.3"
Next, you can use event!
macro to define your event signatures and use them:
```rust
extern crate eventd;
event!(MyEvent => Fn(x: u8) + 'static);
fn main() { let mut myevent = MyEvent::default(); let _ = myevent.subscribe(|x| println!("Got {}", x)); my_event.emit(42); } ```