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异步

Download history 1568030/week @ 2024-05-03 1714021/week @ 2024-05-10 1669729/week @ 2024-05-17 1672455/week @ 2024-05-24 1740716/week @ 2024-05-31 1666899/week @ 2024-06-07 1608899/week @ 2024-06-14 1672583/week @ 2024-06-21 1567557/week @ 2024-06-28 1615339/week @ 2024-07-05 1665474/week @ 2024-07-12 1752290/week @ 2024-07-19 1763208/week @ 2024-07-26 1780296/week @ 2024-08-02 1895673/week @ 2024-08-09 1892246/week @ 2024-08-16

每月下载量 7,674,838
用于 8,037 个 crate(直接使用 116 个)

Apache-2.0 OR MIT

140KB
2.5K SLoC

event-listener

Build License Cargo Documentation

通知异步任务或线程。

这是一个类似于由 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-2.0 许可证定义,应作为上述双重许可,不得有任何额外的条款或条件。

依赖

~0.2–25MB
~340K SLoC