在一定条件下停止扭曲反应堆
有没有办法在达到一定条件时停止扭曲反应堆。例如,如果一个变量被设置为某个值,那么反应堆应该停止吗?
Is there a way to stop the twisted reactor when a certain condition is reached. For example, if a variable is set to certain value, then the reactor should stop?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
理想情况下,您不会将变量设置为值并停止反应器,而是调用reactor.stop()。有时您不在主线程中,这是不允许的,因此您可能需要调用reactor.callFromThread。以下是三个工作示例:
Ideally, you wouldn't set the variable to a value and stop the reactor, you'd call
reactor.stop()
. Sometimes you're not in the main thread, and this isn't allowed, so you might need to callreactor.callFromThread
. Here are three working examples:当然:
sure: