Setting up Parallel Tasks

David Santel
Giga Guru

I am trying to setup 4 parallel tasks. I want task #3 to wait for completion before firing off the task 4. How do I achive this?

 

 

find_real_file.png

1 ACCEPTED SOLUTION

You need to have Step 3 connect to Step 4. Step 4 will then connect to your Join.

 

View solution in original post

5 REPLIES 5

TrevorK
Kilo Sage

Here is an example of running parallel tasks, and waiting for them to be completed before moving forward. This means that the tasks can be completed in any order but must all be marked as complete before moving on.

find_real_file.png

 

In order to have Task 4 start AFTER Task 3 has been completed you put Task 4 immediately after Task 3. So Task 3 connects to Task 4. Task 4 connects to the Join.

 

Does that help?

Shashikant Yada
Tera Guru

Connect flow in this way:

Task 3 activity (Once closed) -> Create Task 4

Ajaykumar1
Tera Guru

Hi David,

In my case, I have to create 4 tasks sequentially, when one task is closed then the flow moves to the next task, and two parallel tasks gets created and then the result is joined.

Refer the below screenshot, this might help.

find_real_file.png

Regards,
Ajay

David Santel
Giga Guru

 

I need to wait for task 3 to completed before I run task 4. I would also like task 4 to show up but not run until task 3 is completed.

 

 

find_real_file.png

 

find_real_file.png