1 10 11 27 28 package org.mule.impl.work; 29 30 import edu.emory.mathcs.backport.java.util.concurrent.Executor; 31 32 import javax.resource.spi.work.WorkException ; 33 34 37 public class ScheduleWorkExecutor implements WorkExecutor 38 { 39 40 public void doExecute(WorkerContext work, Executor executor) throws WorkException , InterruptedException  41 { 42 executor.execute(work); 43 } 44 } 45 | Popular Tags |