core-async

Albert 2025-05-07T17:30:35.515009Z

is flow have something like pipeline , pipeline-async ,`pipeline-blocking` which have controlled parallelism?

ghadi 2025-05-07T17:40:26.781339Z

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

❤️ 5
😮 1
☝️ 1
maybenot 2025-12-23T16:31:11.722159Z

What is the reason to use flow/futurize over say future? Is it about additional exec parameter to specify an executor?