-
public interface Task.UnobservedExceptionHandlerInterface for handlers invoked when a failed
Taskis about to be finalized, but the exception has not been consumed.The handler will execute in the GC thread, so if the handler needs to do anything time consuming or complex it is a good idea to fire off a
Taskto handle the exception.
-
-
Method Summary
Modifier and Type Method Description abstract UnitunobservedException(Task<?> t, UnobservedTaskException e)Method invoked when the given task has an unobserved exception. -
-
Method Detail
-
unobservedException
abstract Unit unobservedException(Task<?> t, UnobservedTaskException e)
Method invoked when the given task has an unobserved exception.
Any exception thrown by this method will be ignored.
- Parameters:
t- the taske- the exception
-
-
-
-