Enable the recompute: all requests to the compute handler will be handled as usual.
[Example]
computeHandler = Operator.GetComputeHandler()
computeHandler.EnableAutoRecompute()
Disable the recompute: all requests to the compute handler will be ignored.
[Example]
computeHandler = Operator.GetComputeHandler()
computeHandler.DisableAutoRecompute()
|
|
Computable object
|
|
|
Type of the recompute enter state
|
Put a recompute request. The request will be executed regardless of the current compute mode.
[Example]
computeHandler.TriggerRecompute(olpProgram, ENTERSTATE_COMPLETE)
or
computeHandler.TriggerRecompute(olpOpGroup, ENTERSTATE_STARTWITHMANUALEVENTS)
or
computeHandler.TriggerRecompute(olpOperation, ENTERSTATE_STARTWITHMANUALEVENTS)
|