Does the execution continue to the next action following a parallel
block after all actions inside the parallel
block have executed, or after any action inside the parallel
block executes? For example, given this parallel
with two actions:
- parallel:
- foo
- bar
- service.notify
Will service.notify
execute after both foo
and bar
have completed or after any of foo
or bar
completes?
The docs are silent on this but based on traces, it appears that it’s after all actions execute.