python glib主循环:延迟直到进入循环
有没有办法安排可调用的执行,直到进入 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 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 toFalse
, likeNone
).