11-30-2017 04:00 AM
Hi everyone,
I'm using a custom Model derived from the sequentialModel (that's a requirement).
I need to run the same sequenceFile in a parrallel mode. My sequence contains only a step with a custom loop, if I change programmaticaly the LoopWhileExpression in one thread, it also changes all the other thread running the same sequence, how can I prevent that ?
Is there any way to change the LooWhileExpression in one thread without an impact on the others ?
Thank you !
Solved! Go to Solution.
02-26-2018 08:09 AM
If anyone is interested, I found a solution :
When setting the loop expressions of a step in the process model, I was giving them a static value every sequences shared.
I solved it by using expression using Locals tha way each sequences could have a different loop condition.