Uses of Interface
java.lang.Thread.UncaughtExceptionHandler
Package
Description
Provides classes that are fundamental to the design of the Java
programming language.
Utility classes commonly useful in concurrent programming.
-
Uses of Thread.UncaughtExceptionHandler in java.lang
Modifier and TypeMethodDescriptionThread.getDefaultUncaughtExceptionHandler()
Returns the default handler invoked when a thread abruptly terminates due to an uncaught exception.Thread.getUncaughtExceptionHandler()
Returns the handler invoked when this thread abruptly terminates due to an uncaught exception.Modifier and TypeMethodDescriptionstatic void
Set the default handler invoked when a thread abruptly terminates due to an uncaught exception, and no other handler has been defined for that thread.void
Set the handler invoked when this thread abruptly terminates due to an uncaught exception. -
Uses of Thread.UncaughtExceptionHandler in java.util.concurrent
Modifier and TypeMethodDescriptionForkJoinPool.getUncaughtExceptionHandler()
Returns the handler for internal worker threads that terminate due to unrecoverable errors encountered while executing tasks.ModifierConstructorDescriptionForkJoinPool
(int parallelism, ForkJoinPool.ForkJoinWorkerThreadFactory factory, Thread.UncaughtExceptionHandler handler, boolean asyncMode) Creates aForkJoinPool
with the given parameters (using defaults for others -- seeForkJoinPool(int, ForkJoinWorkerThreadFactory, UncaughtExceptionHandler, boolean, int, int, int, Predicate, long, TimeUnit)
).ForkJoinPool
(int parallelism, ForkJoinPool.ForkJoinWorkerThreadFactory factory, Thread.UncaughtExceptionHandler handler, boolean asyncMode, int corePoolSize, int maximumPoolSize, int minimumRunnable, Predicate<? super ForkJoinPool> saturate, long keepAliveTime, TimeUnit unit) Creates aForkJoinPool
with the given parameters.