Interface ResizableThreadPoolMXBean

All Superinterfaces:
ResizableThreadPool
All Known Implementing Classes:
ThreadPoolExecutorJMXAdapter

public interface ResizableThreadPoolMXBean extends ResizableThreadPool
  • Method Details

    • getCoreThreads

      @Deprecated(since="4.0") int getCoreThreads()
      Deprecated.
      use getCorePoolSize instead. See CASSANDRA-15277
      Returns core pool size of thread pool.
    • setCoreThreads

      @Deprecated(since="4.0") void setCoreThreads(int number)
      Deprecated.
      use setCorePoolSize instead. See CASSANDRA-15277
      Allows user to resize core pool size of the thread pool.
    • getMaximumThreads

      @Deprecated(since="4.0") int getMaximumThreads()
      Deprecated.
      use getMaximumThreads instead. See CASSANDRA-15277
      Returns maximum pool size of thread pool.
    • setMaximumThreads

      @Deprecated(since="4.0") void setMaximumThreads(int number)
      Deprecated.
      use setMaximumThreads instead. See CASSANDRA-15277
      Allows user to resize maximum size of the thread pool.