java.util.concurrent.ExecutorService
.See: Description
Interface | Description |
---|---|
ICallableNameProvider |
A name provider for a
Callable . |
IRunnableNameProvider |
A name provider for a
Runnable . |
NamedCallable<T> |
A
Callable with a name. |
NamedRunnable |
A
Runnable with a name. |
Class | Description |
---|---|
NamingThreadFactory |
A
ThreadFactory that gives (non-standard) names to new threads. |
NamingThreadPoolExecutor |
A
ThreadPoolExecutor that allows to attach names to the threads it manages. |
PoolNameThread |
A
Thread that knows its pool name. |
This package provides named pool threads when using an
java.util.concurrent.ExecutorService
. This can be helpful in debugging and monitoring
multi-threaded Java applications. Start having a look at the NamedThreadPoolExecutor
.