Package org.apache.cassandra.concurrent
Interface ResizableThreadPoolMXBean
- All Superinterfaces:
ResizableThreadPool
- All Known Implementing Classes:
ThreadPoolExecutorJMXAdapter
-
Method Summary
Modifier and TypeMethodDescriptionintDeprecated.use getCorePoolSize instead.intDeprecated.use getMaximumThreads instead.voidsetCoreThreads(int number) Deprecated.use setCorePoolSize instead.voidsetMaximumThreads(int number) Deprecated.use setMaximumThreads instead.Methods inherited from interface org.apache.cassandra.concurrent.ResizableThreadPool
getActiveTaskCount, getCompletedTaskCount, getCorePoolSize, getMaximumPoolSize, getMaxTasksQueued, getPendingTaskCount, oldestTaskQueueTime, setCorePoolSize, setMaximumPoolSize
-
Method Details
-
getCoreThreads
Deprecated.use getCorePoolSize instead. See CASSANDRA-15277Returns core pool size of thread pool. -
setCoreThreads
Deprecated.use setCorePoolSize instead. See CASSANDRA-15277Allows user to resize core pool size of the thread pool. -
getMaximumThreads
Deprecated.use getMaximumThreads instead. See CASSANDRA-15277Returns maximum pool size of thread pool. -
setMaximumThreads
Deprecated.use setMaximumThreads instead. See CASSANDRA-15277Allows user to resize maximum size of the thread pool.
-