Package org.apache.cassandra.concurrent
Interface JMXEnabledThreadPoolExecutorMBean
-
- All Superinterfaces:
ResizableThreadPool
- All Known Implementing Classes:
CompactionManager.ValidationExecutor
,JMXEnabledSingleThreadExecutor
,JMXEnabledThreadPoolExecutor
public interface JMXEnabledThreadPoolExecutorMBean extends ResizableThreadPool
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description int
getCoreThreads()
Deprecated.int
getMaximumThreads()
Deprecated.void
setCoreThreads(int number)
Deprecated.void
setMaximumThreads(int number)
Deprecated.-
Methods inherited from interface org.apache.cassandra.concurrent.ResizableThreadPool
getCorePoolSize, getMaximumPoolSize, setCorePoolSize, setMaximumPoolSize
-
-
-
-
Method Detail
-
getCoreThreads
@Deprecated int getCoreThreads()
Deprecated.Returns core pool size of thread pool. Deprecated, use getCorePoolSize instead.
-
setCoreThreads
@Deprecated void setCoreThreads(int number)
Deprecated.Allows user to resize core pool size of the thread pool. Deprecated, use setCorePoolSize instead.
-
getMaximumThreads
@Deprecated int getMaximumThreads()
Deprecated.Returns maximum pool size of thread pool. Deprecated, use getMaximumThreads instead.
-
setMaximumThreads
@Deprecated void setMaximumThreads(int number)
Deprecated.Allows user to resize maximum size of the thread pool. Deprecated, use setMaximumThreads instead.
-
-