Hello,
I have 6 queues each containing a different item type. These items are all processed and then sent to another Queue/Processor based on item.TYPE. I need help creating a way that Operator1 will only load Processor10 if its corresponding queue is open. For example:
- If Queue1 is empty, load Processor10 with item from Queue7
- If Queue2 is empty, load Processor10 with item from Queue8
- If Queue3 is empty, load Processor10 with item from Queue9
What's happening currently is Operator1 will load an item from Queue7, but Queue1 is full and this prevents the other processors from being filled.
Thanks for any help!