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.