当每个回调都有不同的参数时,将 Twisted Deferred 与并行回调一起使用
我想创建一个延迟,如下所示:
f1(x1)
和 f2(x2)
并行执行(可以这么说) 完成后,我运行 f3()
如果我有相同的参数,我会运行:
d = Deferred()
d.addCallbacks(f1)
d.addCallbacks(f2)
d.addCallback(lambda x: f3())
d.callback(x1)
以便将 x1
传递给 f1
和 f2
。但我需要 f1
来获取 x1
等等。
我该怎么做?
谢谢。
I want to create a deferred as follows:
f1(x1)
and f2(x2)
are performed in parallel (so to speak)
and after they finish, I run f3()
If I had the same parameters, I'd run:
d = Deferred()
d.addCallbacks(f1)
d.addCallbacks(f2)
d.addCallback(lambda x: f3())
d.callback(x1)
So that I pass x1
to both f1
and f2
. But I need f1
to get x1
and so forth.
How can I do this?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定我是否正确理解了您的用例,但这似乎是 DeferredList 效果特别好。
这样,只有当 d1 和 d2 都完成后,f3 才会被执行。
I am not sure, if I understood your use case right, but this seems to be something, where a DeferredList would work particularly well.
This way, f3 will only be executed once both d1 and d2 have completed.