Conditional aborts with Parallel

Is there a way I can make node 1 interrupt node 2 if the condition of its children changes (fails)?

Thought this would work but it only check the Parallel children once.

1682333369885.png
 
No, the parallel task will run each child so there's no need for conditional aborts. If you want to have more control you should use the interrupt/perform interruption task.
 
Top