33 stable releases (4 major)

5.4.0 Jan 8, 2025
5.3.1 May 29, 2024
5.3.0 Apr 5, 2024
5.2.0 Feb 29, 2024
1.2.0 May 25, 2020

#31 in Asynchronous

Download history 1997521/week @ 2024-09-28 2139661/week @ 2024-10-05 2076219/week @ 2024-10-12 2202590/week @ 2024-10-19 2117621/week @ 2024-10-26 2160427/week @ 2024-11-02 2099919/week @ 2024-11-09 2092637/week @ 2024-11-16 1718232/week @ 2024-11-23 1933401/week @ 2024-11-30 2275100/week @ 2024-12-07 2036612/week @ 2024-12-14 887891/week @ 2024-12-21 1124703/week @ 2024-12-28 2083881/week @ 2025-01-04 1991126/week @ 2025-01-11

6,389,572 downloads per month
Used in 9,120 crates (123 directly)

Apache-2.0 OR MIT

145KB
2.5K SLoC

event-listener

Build License Cargo Documentation

Notify async tasks or threads.

This is a synchronization primitive similar to eventcounts invented by Dmitry Vyukov.

You can use this crate to turn non-blocking data structures into async or blocking data structures. See a simple mutex implementation that exposes an async and a blocking interface for acquiring locks.

Examples

Wait until another thread sets a boolean flag:

use std::sync::atomic::{AtomicBool, Ordering};
use std::sync::Arc;
use std::thread;
use std::time::Duration;
use event_listener::Event;

let flag = Arc::new(AtomicBool::new(false));
let event = Arc::new(Event::new());

// Spawn a thread that will set the flag after 1 second.
thread::spawn({
    let flag = flag.clone();
    let event = event.clone();
    move || {
        // Wait for a second.
        thread::sleep(Duration::from_secs(1));

        // Set the flag.
        flag.store(true, Ordering::SeqCst);

        // Notify all listeners that the flag has been set.
        event.notify(usize::MAX);
    }
});

// Wait until the flag is set.
loop {
    // Check the flag.
    if flag.load(Ordering::SeqCst) {
        break;
    }

    // Start listening for events.
    let listener = event.listen();

    // Check the flag again after creating the listener.
    if flag.load(Ordering::SeqCst) {
        break;
    }

    // Wait for a notification and continue the loop.
    listener.wait();
}

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~0.2–24MB
~307K SLoC