与tornado 的IOLoop.add_callback 等价的twisted 是什么?
我正在尝试调整一些龙卷风代码以与twisted一起使用。
Tornado的IOLoop有一个函数(add_callback
),这实际上会在循环的下一次迭代中回调该函数。据我所知,Twisted 没有对此的直接翻译。有什么办法可以在扭曲中模拟这个吗?
I'm trying to adapt some tornado code to work with twisted.
Tornado's IOLoop has a function (add_callback
) that will essentially call the function back in the next iteration of the loop. As far as I can tell, twisted doesn't have a direct translation of this. Is there any way to simulate this in twisted?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
reactor.callLater(0, x)
或reactor.callFromThread(x)
reactor.callLater(0, x)
orreactor.callFromThread(x)