python glib主循环:延迟直到进入循环

发布于 2024-08-21 19:57:33 字数 69 浏览 2 评论 0原文

有没有办法安排可调用的执行,直到进入 glib 主循环?

或者,是否有一个我可以订阅的信号来指示进入主循环?

Is there a way to schedule the execution of a callable until the glib main loop is entered?

Alternatively, is there a signal I can subscribe to that will indicate that the main loop is entered?

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

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

发布评论

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

评论(1

沙与沫 2024-08-28 19:57:33

您可以使用 gobject.idle_add将安排一个可调用程序在主循环空闲时执行。 gobject.timeout_add 是一种替代方案使用计时器。

请注意,可调用对象将被一次又一次调用,除非返回 False (或任何解析为 False 的内容,例如 None)。

You can use gobject.idle_add which will schedule a callable to be executed when the main loop is idle. gobject.timeout_add is an alternative which uses a timer.

Mind that the callable will be called again and again, unless is returns False (or anything that resolves to False, like None).

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