3 releases

0.4.2 Sep 9, 2023
0.4.1 Sep 9, 2023
0.3.0 Sep 9, 2023
0.2.1 Sep 8, 2023
0.1.1 Sep 6, 2023

#755 in Asynchronous

Download history 5/week @ 2024-02-19 5/week @ 2024-02-26 54/week @ 2024-04-01

54 downloads per month
Used in winit-runtime

MIT license

12KB
240 lines

EventSource

Zero cost non buffered async event emitter

This crate is no_std

Features

  1. Non buffered, immediate event dispatch
  2. Zero cost listener adding, removing
  3. Higher kinded event type
  4. Propagation control

Example

async fn main() {
    let source: Arc<EventSource!(&mut i32)> = Arc::new(EventSource::new());

    // imaginary function for spawning future in another thread
    spawn({
        let source = source.clone();
        async {
            let mut a = 35;
            emit!(source, &mut a);
        }
    });

    let mut output = 0;
    // Closure can contain reference!
    source.on(|value, flow| {
        println!("Event emiited with value: {}!", value);
        output = *value;

        // mark listener as finished
        flow.set_done();
    }).await;

    println!("Output: {}", output);
}

Output

Event emiited with value: 35!
Output: 35

License

MIT

Dependencies

~0.6–6.5MB
~14K SLoC