In the project, I want to keep 1 item only in MultiProcessor for processing.
But the operator load 2 items after 1st item exit.
Anything problem caused by the following code in OnProcessFinish?
Object current = ownerobject(c); Object item = param(1); int opnum = param(2); int numOfCuts = current.attrs.variables.find("optable").subnodes.length; double item0length = 1.8; if(opnum < numOfCuts){ createcopy(item,current,1,0,1,0); Object cutitem = current.last; releaseitem(cutitem,1); }