You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
The BeginCycle() in the EngineListener can be used as application level pre-check and can call the DataContext.Complete(), if the pre-checks fail. However in the current ExecuteWithContext() function, the if dataCtx.IsComplete() { break }
is completed only after the current Execution cycle completes.
Describe the solution you'd like
Add if dataCtx.IsComplete() { break }
to the beginning of the for loop in the ExecuteWithContext() function.
Describe alternatives you've considered
N/A
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
The
BeginCycle()
in the EngineListener can be used as application level pre-check and can call the DataContext.Complete(), if the pre-checks fail. However in the currentExecuteWithContext()
function, theif dataCtx.IsComplete() { break }
is completed only after the current Execution cycle completes.
Describe the solution you'd like
Add
if dataCtx.IsComplete() { break }
to the beginning of the
for
loop in theExecuteWithContext()
function.Describe alternatives you've considered
N/A
The text was updated successfully, but these errors were encountered: