I have a situation where I have to start/boot multiple objects at a time asynchronously. Some of these classes depend on other classes to be instantiated first. Think an IoC container with asynchronous setup.
This promise graph looks promising, however there doesn't seem to be a way to wire the outputs of one dependency into another. Since you declare that a particular action depends on another action, why can't we take as input a parameter of the outputs?