is flow have something like pipeline , pipeline-async ,`pipeline-blocking` which have controlled parallelism?
You can use flow to pipeline. Make a process whose step fn is to call flow/futurize, then connect it to a process whose step is to call deref on its input. Buffering the channel of the deref process input achieves pipelining
What is the reason to use flow/futurize over say future? Is it about additional exec parameter to specify an executor?