1 22 package org.jboss.util.threadpool; 23 24 30 public interface ThreadPoolMBean 31 { 32 34 36 41 String getName(); 42 43 48 void setName(String name); 49 50 55 int getPoolNumber(); 56 57 62 int getMinimumPoolSize(); 63 64 69 void setMinimumPoolSize(int size); 70 71 76 int getMaximumPoolSize(); 77 78 83 void setMaximumPoolSize(int size); 84 85 88 ThreadPool getInstance(); 89 90 93 void stop(); 94 95 } 97 | Popular Tags |