观察属性的变化
我需要一个类似于 gobject.io_add_watch 的函数,但用于变量。例如,它需要监视初始化为 stop = False
的变量 stop
,并且当 stop 更改为 True
时,它必须调用一个函数。我无法让单独的线程使用 time.sleep 来监视循环中的变量。
有这样的功能或方法吗?
I need a function similar to gobject.io_add_watch
but for a variable. For example it needs to watch the variable stop
initialized to stop = False
and when stop is changed to True
it must call a function. I can't have a separate thread watching the variable in a loop with a time.sleep.
Is there such a function or a way to do that ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在类中使用 属性:
Use a property in a class: