1 17 18 package org.apache.geronimo.connector.work.pool; 19 20 import edu.emory.mathcs.backport.java.util.concurrent.Executor; 21 22 28 public interface WorkExecutorPool extends Executor { 29 30 35 public int getPoolSize(); 36 37 42 public int getMaximumPoolSize(); 43 44 49 public void setMaximumPoolSize(int aSize); 50 51 public WorkExecutorPool start(); 52 53 public WorkExecutorPool stop(); 54 55 } 56 | Popular Tags |