1 17 18 package org.apache.geronimo.timer; 19 20 26 public class NontransactionalExecutorTaskFactory implements ExecutorTaskFactory { 27 public NontransactionalExecutorTaskFactory() { 28 } 29 30 public ExecutorTask createExecutorTask(Runnable userTask, WorkInfo workInfo, ThreadPooledTimer threadPooledTimer) { 31 return new NontransactionalExecutorTask(userTask, workInfo, threadPooledTimer); 32 } 33 34 } 35 | Popular Tags |