1 17 package org.apache.geronimo.connector.work.pool; 18 19 import javax.resource.spi.work.WorkException ; 20 21 import edu.emory.mathcs.backport.java.util.concurrent.Executor; 22 23 import org.apache.geronimo.connector.work.WorkerContext; 24 25 31 public interface WorkExecutor { 32 33 44 void doExecute(WorkerContext work, Executor executor) 45 throws WorkException , InterruptedException ; 46 47 48 } 49 | Popular Tags |