You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
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?The text was updated successfully, but these errors were encountered: