06-13-2006 02:52 PM
06-13-2006 03:33 PM
Hi,
The problem is, as soon as you terminate the parallel thread, then you are going to terminate both threads.
Better to have two executions, the OI execution startiing the sequence execution. That way you can use the Execution.Terminate method and the Execution.ReStartEx method to met your requirement.
Regards
Ray Farmer
06-13-2006 09:44 PM
06-15-2006 03:33 AM
Hi,
What you could do is pass the RunState.Execution as a parameter to the other parallel execution. Then in the parallel execution, using this reference, you can then perform the Execution.Terminate and the Execution.ReStartEx methods.
Regards
Ray Farmer
06-15-2006 10:13 AM