GridMetricManager
instead.@MXBeanDescription(value="MBean that provides access to information about executor service.") @Deprecated public interface ThreadPoolMXBean
Modifier and Type | Method and Description |
---|---|
int |
getActiveCount()
Deprecated.
Returns the approximate number of threads that are actively executing tasks.
|
long |
getCompletedTaskCount()
Deprecated.
Returns the approximate total number of tasks that have completed execution.
|
int |
getCorePoolSize()
Deprecated.
Returns the core number of threads.
|
long |
getKeepAliveTime()
Deprecated.
Returns the thread keep-alive time, which is the amount of time which threads
in excess of the core pool size may remain idle before being terminated.
|
int |
getLargestPoolSize()
Deprecated.
Returns the largest number of threads that have ever
simultaneously been in the pool.
|
int |
getMaximumPoolSize()
Deprecated.
Returns the maximum allowed number of threads.
|
int |
getPoolSize()
Deprecated.
Returns the current number of threads in the pool.
|
int |
getQueueSize()
Deprecated.
Gets current size of the execution queue.
|
String |
getRejectedExecutionHandlerClass()
Deprecated.
The class name of the handler for tasks that cannot be executed.
|
long |
getTaskCount()
Deprecated.
Returns the approximate total number of tasks that have been scheduled
for execution.
|
String |
getThreadFactoryClass()
Deprecated.
Returns the class name of thread factory used to create new threads.
|
boolean |
isShutdown()
Deprecated.
Returns
true if this executor has been shut down. |
boolean |
isTerminated()
Deprecated.
Returns
true if all tasks have completed following shut down. |
boolean |
isTerminating()
Deprecated.
Returns
true if this executor is in the process of terminating after
shutdown() or shutdownNow() but has not completely terminated. |
@MXBeanDescription(value="Approximate number of threads that are actively executing tasks.") int getActiveCount()
@MXBeanDescription(value="Approximate total number of tasks that have completed execution.") long getCompletedTaskCount()
@MXBeanDescription(value="The core number of threads.") int getCorePoolSize()
@MXBeanDescription(value="Largest number of threads that have ever simultaneously been in the pool.") int getLargestPoolSize()
@MXBeanDescription(value="The maximum allowed number of threads.") int getMaximumPoolSize()
@MXBeanDescription(value="Current number of threads in the pool.") int getPoolSize()
@MXBeanDescription(value="Approximate total number of tasks that have been scheduled for execution.") long getTaskCount()
@MXBeanDescription(value="Current size of the execution queue.") int getQueueSize()
@MXBeanDescription(value="Thread keep-alive time, which is the amount of time which threads in excess of the core pool size may remain idle before being terminated.") long getKeepAliveTime()
@MXBeanDescription(value="True if this executor has been shut down.") boolean isShutdown()
true
if this executor has been shut down.True
if this executor has been shut down.@MXBeanDescription(value="True if all tasks have completed following shut down.") boolean isTerminated()
true
if all tasks have completed following shut down. Note that
isTerminated()
is never true
unless either shutdown()
or
shutdownNow()
was called first.True
if all tasks have completed following shut down.@MXBeanDescription(value="True if terminating but not yet terminated.") boolean isTerminating()
true
if this executor is in the process of terminating after
shutdown()
or shutdownNow()
but has not completely terminated.
This method may be useful for debugging. A return of true
reported a
sufficient period after shutdown may indicate that submitted tasks have ignored
or suppressed interruption, causing this executor not to properly terminate.True
if terminating but not yet terminated.@MXBeanDescription(value="Returns the class name of the handler for tasks that cannot be executed by the thread pool.") String getRejectedExecutionHandlerClass()
@MXBeanDescription(value="Class name of thread factory used to create new threads.") String getThreadFactoryClass()
GridGain In-Memory Computing Platform : ver. 8.9.14 Release Date : November 5 2024