I have a main queue which is supposed to dispatch items in a batch of 8. There are 2 queues after that, and it takes the batch of 8 each. The 2 queues are manned by 1 operator each. When Items reached the main queue, I only want 1 operator to move forward and carry the 8 item and carry back to his own station. However, what my simulation does is the operator went and took the 8 items, and move between the 2 queues to distribute and ended up with 4 in each queues. Is there a way I could make it such that when items are ready to be dispatched, the first available operator moves and took his items to his own station, and if there is another batch, the second operator does the same?