1 10 11 27 28 package org.mule.impl.work; 29 30 import edu.emory.mathcs.backport.java.util.concurrent.Executor; 31 32 38 public interface WorkExecutorPool extends Executor 39 { 40 41 46 int getPoolSize(); 47 48 53 int getMaximumPoolSize(); 54 55 60 void setMaximumPoolSize(int aSize); 61 62 WorkExecutorPool start(); 63 64 WorkExecutorPool stop(); 65 66 } 67 | Popular Tags |