Allow Task.par(Iterable) to fail-fast
hcburca opened this issue · 0 comments
hcburca commented
Is there any way of failing fast when executing a list of tasks in parallel?
For my use-case I want to cancel all the remaining tasks when one of the tasks in the parallel group fails.
I saw that Task.par(Task, Task, ...)
behaves like this.
I wonder if Task.par(Iterable)
can support it as well?