MultipProcessExample_22-withdispatcher.fsmI was provided a possible solution to model multiple sequential process steps in one processor using a process flow. It works if there is only a single Operator task executor who will keep unloading/loading the same part multiple times until completed. However my case involves using a dispatcher of multiple operators and some of the substeps will require both an Operator and an Inspector (from a different Dispatcher). When I try to set this up, as soon as the first substep is completed and an Operator unloads the item (to load back again into the same processor for the 2nd substep/etc), a different Operator will load a new item into the processor. The processor should only be running 1 item at a time and should complete all the substeps outlined in the process flow before same/different Operator should load a new item. How should I model this correctly? Thank you!