Hello,
I am trying to do a simple model, where a in item is split (into 9) and each instance is processed and then routed to a combiner. My problem is- I can not have another item arrive on the separator while anything is still standing on the following processor, such a case happens when the combiner is processing a certain number of the split and processed items (26 in my case).
So, I get 26 items in my combiner, it is stuck joining them for 30s, and another instance is stuck on the processor, I want the separator to have its input closed during this situation.
Basically I want to know how to be able to send a message to the separator to open its input after the 9th item has left the processor, I know it is possible to script it but I am very new at this.