Interface TaskActions
-
- All Known Implementing Classes:
NoOpTaskActions
,Task
public interface TaskActions
Actions which can be performed on aTask
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
failExternally(Throwable cause)
Fail the owning task with the given throwable.
-
-
-
Method Detail
-
failExternally
void failExternally(Throwable cause)
Fail the owning task with the given throwable.- Parameters:
cause
- of the failure
-
-