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
The javadoc for ScheduledExecutorService states the following:
If any execution of the task encounters an exception, subsequent executions are suppressed. Otherwise, the task will only terminate via cancellation or termination of the executor.
Currently DeterministicScheduler will always resubmit the task to the deltaQueue if it's a repeating task, regardless of whether the task is cancelled or has encountered an exception.
The text was updated successfully, but these errors were encountered:
The javadoc for
ScheduledExecutorService
states the following:Currently
DeterministicScheduler
will always resubmit the task to thedeltaQueue
if it's a repeating task, regardless of whether the task is cancelled or has encountered an exception.The text was updated successfully, but these errors were encountered: