In my file, the third line (processor 44), I want to achieve the following functions: the truck loads 450 boxes, the first person unloads the box into the tote, each tote loads 12 box, and the tote is placed in queue 8. The maximum capacity of queue8 is 4. When the tote is full of 12 goods, the next person transports the tote to EntryTransfer6, and puts the box in the tote on the conveyor until all the boxes are unloaded. If the second person is slower, As a result, the first person has already filled 4 tote. If this happens, the first person stops until the second person takes a tote; after all the goods on the truck are unloaded, wait for 300s before the next truck arrives. And so on……
Now I want to use push to list to implement some of the functions, that is: when the first person fills up a tote, push this task to the list, and the second person pulls from list to start working; but I have no use After the function of list/push to list/pull from list, how can I solve this problem?