Interface CheckpointPlanCalculatorContext
-
- All Known Implementing Classes:
ExecutionGraphCheckpointPlanCalculatorContext
public interface CheckpointPlanCalculatorContext
Provides the context forDefaultCheckpointPlanCalculator
to compute the plan of checkpoints.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ScheduledExecutor
getMainExecutor()
Acquires the main thread executor for this job.boolean
hasFinishedTasks()
Detects whether there are already some tasks finished.
-
-
-
Method Detail
-
getMainExecutor
ScheduledExecutor getMainExecutor()
Acquires the main thread executor for this job.- Returns:
- The main thread executor.
-
hasFinishedTasks
boolean hasFinishedTasks()
Detects whether there are already some tasks finished.- Returns:
- Whether there are finished tasks.
-
-