event-listener/README.md

87 lines
2.4 KiB
Markdown
Raw Permalink Normal View History

2020-05-16 17:44:50 +00:00
# event-listener
2022-12-18 15:05:53 +00:00
[![Build](https://github.com/smol-rs/event-listener/workflows/CI/badge.svg)](
2020-12-26 14:47:13 +00:00
https://github.com/smol-rs/event-listener/actions)
[![License](https://img.shields.io/badge/license-Apache--2.0_OR_MIT-blue.svg)](
2020-12-26 14:47:13 +00:00
https://github.com/smol-rs/event-listener)
2020-05-16 17:44:50 +00:00
[![Cargo](https://img.shields.io/crates/v/event-listener.svg)](
https://crates.io/crates/event-listener)
[![Documentation](https://docs.rs/event-listener/badge.svg)](
https://docs.rs/event-listener)
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.
2022-12-18 15:05:53 +00:00
[eventcounts]: https://www.1024cores.net/home/lock-free-algorithms/eventcounts
2020-05-16 17:46:34 +00:00
[simple mutex]: ./examples/mutex.rs
2020-05-16 17:44:50 +00:00
## Examples
Wait until another thread sets a boolean flag:
```rust
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);
2020-05-16 17:44:50 +00:00
}
});
// 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
2022-12-18 15:05:53 +00:00
* Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or https://www.apache.org/licenses/LICENSE-2.0)
* MIT license ([LICENSE-MIT](LICENSE-MIT) or https://opensource.org/licenses/MIT)
2020-05-16 17:44:50 +00:00
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.