Interface StateTransitions.ToCancelling
-
- All Superinterfaces:
StateTransitions
- All Known Implementing Classes:
AdaptiveScheduler
- Enclosing interface:
- StateTransitions
public static interface StateTransitions.ToCancelling extends StateTransitions
Interface covering transition to theCancelingstate.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.flink.runtime.scheduler.adaptive.StateTransitions
StateTransitions.ToCancelling, StateTransitions.ToCreatingExecutionGraph, StateTransitions.ToExecuting, StateTransitions.ToFailing, StateTransitions.ToFinished, StateTransitions.ToRestarting, StateTransitions.ToStopWithSavepoint, StateTransitions.ToWaitingForResources
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidgoToCanceling(ExecutionGraph executionGraph, ExecutionGraphHandler executionGraphHandler, OperatorCoordinatorHandler operatorCoordinatorHandler, List<ExceptionHistoryEntry> failureCollection)Transitions into theCancelingstate.
-
-
-
Method Detail
-
goToCanceling
void goToCanceling(ExecutionGraph executionGraph, ExecutionGraphHandler executionGraphHandler, OperatorCoordinatorHandler operatorCoordinatorHandler, List<ExceptionHistoryEntry> failureCollection)
Transitions into theCancelingstate.- Parameters:
executionGraph- executionGraph to pass to theCancelingstateexecutionGraphHandler- executionGraphHandler to pass to theCancelingstateoperatorCoordinatorHandler- operatorCoordinatorHandler to pass to theCancelingstatefailureCollection- collection of failures that are propagated
-
-