| Package | Description |
|---|---|
| java.lang |
Provides classes that are fundamental to the design of the Java programming language.
|
| java.util.concurrent |
Utility classes commonly useful in concurrent programming.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ThreadGroup
A thread group represents a set of threads.
|
| Modifier and Type | Method and Description |
|---|---|
static Thread |
Thread.getDefaultUncaughtExceptionHandler()
Returns the default handler invoked when a thread abruptly terminates due to an uncaught exception.
|
Thread |
Thread.getUncaughtExceptionHandler()
Returns the handler invoked when this thread abruptly terminates due to an uncaught exception.
|
| Modifier and Type | Method and Description |
|---|---|
static void |
Thread.setDefaultUncaughtExceptionHandler(Thread
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 |
Thread.setUncaughtExceptionHandler(Thread
Set the handler invoked when this thread abruptly terminates due to an uncaught exception.
|
| Modifier and Type | Method and Description |
|---|---|
Thread |
ForkJoinPool.getUncaughtExceptionHandler()
Returns the handler for internal worker threads that terminate due to unrecoverable errors encountered while executing tasks.
|
| Constructor and Description | |
|---|---|
ForkJoinPool(int parallelism, ForkJoinPool
Creates a
ForkJoinPool with the given parameters.
|