Interface AsyncExceptionHandler
-
- All Known Implementing Classes:
AbstractTwoInputStreamTask
,MultipleInputStreamTask
,OneInputStreamTask
,SourceOperatorStreamTask
,SourceStreamTask
,StreamIterationHead
,StreamIterationTail
,StreamTask
,TwoInputStreamTask
public interface AsyncExceptionHandler
An interface marking a task as capable of handling exceptions thrown by different threads, other than the one executing the task itself.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
handleAsyncException(String message, Throwable exception)
Handles an exception thrown by another thread (e.g. a TriggerTask), other than the one executing the main task.
-