Here is the process flow for an operator:
Task 1: Operator waits until 100 items arrive at Queue1 and move these items
Task 2: After finishing 1st task, same operator move 50 items from Queue2
50 items arrive at Queue2 well before 100 items arrive at Queue1. So, operator is moving to Task 2 as soon as 50 items arrive at Queue2 & then completing Task 1. I would like him to finish Task 1 first and then complete task 2.
I tried Preempt option, priority option, and task sequencing option but it did not work. What is best way to sequencing the task 1 and then task 2?