Interface IThreadPoolMBean
-
- All Known Subinterfaces:
WrappedScheduledExecutorServiceMBean,WrappedThreadPoolExecutorMBean
- All Known Implementing Classes:
WrappedScheduledExecutorService,WrappedThreadPoolExecutor
public interface IThreadPoolMBean
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetActiveCount()longgetCompletedTaskCount()intgetCorePoolSize()intgetLargestPoolSize()intgetMaximumPoolSize()intgetPoolSize()java.util.Queue<java.lang.Runnable>getQueue()intgetQueueLength()longgetTaskCount()booleanprestartCoreThread()
-
-
-
Method Detail
-
getCorePoolSize
int getCorePoolSize()
-
prestartCoreThread
boolean prestartCoreThread()
-
getMaximumPoolSize
int getMaximumPoolSize()
-
getQueue
java.util.Queue<java.lang.Runnable> getQueue()
-
getQueueLength
int getQueueLength()
-
getPoolSize
int getPoolSize()
-
getActiveCount
int getActiveCount()
-
getLargestPoolSize
int getLargestPoolSize()
-
getTaskCount
long getTaskCount()
-
getCompletedTaskCount
long getCompletedTaskCount()
-
-