与tornado 的IOLoop.add_callback 等价的twisted 是什么?

发布于 2024-09-13 12:54:33 字数 264 浏览 9 评论 0原文

我正在尝试调整一些龙卷风代码以与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 技术交流群。

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

发布评论

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

评论(1

反话 2024-09-20 12:54:33

reactor.callLater(0, x)reactor.callFromThread(x)

reactor.callLater(0, x) or reactor.callFromThread(x)

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