使用“gevent.event.Event”进行多监听器通知的更好模式?

发布于 2024-12-01 15:35:35 字数 292 浏览 1 评论 0原文

我发现大多数时候当我使用 gevent.event.Event 时,我的代码看起来像这样:

old_event = self.some_event
self.some_event = Event()
old_event.set()

监听器看起来像这样:

while 1:
    self.some_event.wait()
    … do stuff …

这是“正确的方法吗”?或者是否有更好的方法来通知多个侦听器重复发生的事件?

I've found that most of the time when I use gevent.event.Event, my code looks something like this:

old_event = self.some_event
self.some_event = Event()
old_event.set()

With the listeners looking something like:

while 1:
    self.some_event.wait()
    … do stuff …

Is this the “right way to do it”? Or is there a better way to notify multiple listeners of a recurring event?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

仅此而已 2024-12-08 15:35:35

好吧,您还可以clear() 该事件。

event.set()
event.clear()

这将通知当前正在等待该事件的侦听器,但稍后启动 wait() 的侦听器将被阻塞,直到下一次调用 set()

Well, you can also clear() the event.

event.set()
event.clear()

This will notify the listeners that are currently waiting for the event, but the listeners that are started to wait() later will be blocked until the next call to set().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文