1 29 30 package com.caucho.management.server; 31 32 import com.caucho.jmx.Description; 33 34 41 @Description("ThreadPool manages all threads used by the Resin server") 42 public interface ThreadPoolMXBean extends ManagedObjectMXBean { 43 46 @Description("The configured maximum number of threads") 47 public int getThreadMax(); 48 49 52 @Description("The configured minimum number of idle threads") 53 public int getThreadIdleMin(); 54 55 58 @Description("The configured maximum number of idle threads") 59 public int getThreadIdleMax(); 60 61 65 68 @Description("The current number of managed threads") 69 public int getThreadCount(); 70 71 74 @Description("The current number of active threads") 75 public int getThreadActiveCount(); 76 77 80 @Description("The current number of idle threads") 81 public int getThreadIdleCount(); 82 } 83 | Popular Tags |