eventd

Rust implementation of observer design pattern. Dispatch is immediate and multicast. For delayed handling you can use shrev.

License: MIT Crates.io Documentation

More information about this crate can be found in the crate documentation.

Features

Usage

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

[macro_use]

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); } ```