32 个稳定版本 (4 个主要版本)
5.3.1 | 2024年5月29日 |
---|---|
5.2.0 | 2024年2月29日 |
4.0.3 | 2024年1月6日 |
4.0.1 | 2023年12月19日 |
1.2.0 | 2020年5月25日 |
#27 在 异步 中
每月下载量 7,674,838
用于 8,037 个 crate(直接使用 116 个)
140KB
2.5K SLoC
event-listener
通知异步任务或线程。
这是一个类似于由 Dmitry Vyukov 发明的 eventcounts 的同步原语。
您可以使用此 crate 将非阻塞数据结构转换为异步或阻塞数据结构。参见一个 简单的互斥锁 实现,该实现公开了异步和阻塞接口以获取锁。
示例
等待另一个线程设置布尔标志
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();
}
许可证
许可证如下之一
- Apache License,版本 2.0 (LICENSE-APACHE 或 https://apache.ac.cn/licenses/LICENSE-2.0)
- MIT 许可证 (LICENSE-MIT 或 https://opensource.org/licenses/MIT)
任选其一。
贡献
除非您明确声明,否则您有意提交给作品以包含在内的任何贡献,根据 Apache-2.0 许可证定义,应作为上述双重许可,不得有任何额外的条款或条件。
依赖
~0.2–25MB
~340K SLoC