Class NoOpTaskActions
- java.lang.Object
-
- org.apache.flink.runtime.taskmanager.NoOpTaskActions
-
- All Implemented Interfaces:
TaskActions
public class NoOpTaskActions extends Object implements TaskActions
A dummy implementation of theTaskActions
which is mainly used for tests.
-
-
Constructor Summary
Constructors Constructor Description NoOpTaskActions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
failExternally(Throwable cause)
Fail the owning task with the given throwable.
-
-
-
Method Detail
-
failExternally
public void failExternally(Throwable cause)
Description copied from interface:TaskActions
Fail the owning task with the given throwable.- Specified by:
failExternally
in interfaceTaskActions
- Parameters:
cause
- of the failure
-
-