Interface OnCompletionActions
-
- All Known Implementing Classes:
DefaultJobMasterServiceProcess
public interface OnCompletionActions
Interface for completion actions once a Flink job has reached a terminal state.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
jobMasterFailed(Throwable cause)
TheJobMaster
failed while executing the job.void
jobReachedGloballyTerminalState(ExecutionGraphInfo executionGraphInfo)
Job reached a globally terminal state.
-
-
-
Method Detail
-
jobReachedGloballyTerminalState
void jobReachedGloballyTerminalState(ExecutionGraphInfo executionGraphInfo)
Job reached a globally terminal state.- Parameters:
executionGraphInfo
- contains information about the terminated job
-
-