Interface StateTransitions.ToExecuting
-
- All Superinterfaces:
StateTransitions
- All Known Implementing Classes:
AdaptiveScheduler
- Enclosing interface:
- StateTransitions
public static interface StateTransitions.ToExecuting extends StateTransitions
Interface covering transition to theExecuting
state.
-
-
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 void
goToExecuting(ExecutionGraph executionGraph, ExecutionGraphHandler executionGraphHandler, OperatorCoordinatorHandler operatorCoordinatorHandler, List<ExceptionHistoryEntry> failureCollection)
Transitions into theExecuting
state.
-
-
-
Method Detail
-
goToExecuting
void goToExecuting(ExecutionGraph executionGraph, ExecutionGraphHandler executionGraphHandler, OperatorCoordinatorHandler operatorCoordinatorHandler, List<ExceptionHistoryEntry> failureCollection)
Transitions into theExecuting
state.- Parameters:
executionGraph
- executionGraph to pass to theExecuting
stateexecutionGraphHandler
- executionGraphHandler to pass to theExecuting
stateoperatorCoordinatorHandler
- operatorCoordinatorHandler to pass to theExecuting
statefailureCollection
- collection of failures that are propagated
-
-