Package org.apache.geronimo.timer

Examples of org.apache.geronimo.timer.NontransactionalExecutorTask


    public NontransactionalExecutorTaskFactory(TransactionContextManager transactionContextManager) {
        this.transactionContextManager = transactionContextManager;
    }

    public ExecutorTask createExecutorTask(Runnable userTask, WorkInfo workInfo, ThreadPooledTimer threadPooledTimer) {
        return new NontransactionalExecutorTask(userTask, workInfo, threadPooledTimer, transactionContextManager);
    }
View Full Code Here


    public NontransactionalExecutorTaskFactory(TransactionContextManager transactionContextManager) {
        this.transactionContextManager = transactionContextManager;
    }

    public ExecutorTask createExecutorTask(Runnable userTask, WorkInfo workInfo, ThreadPooledTimer threadPooledTimer) {
        return new NontransactionalExecutorTask(userTask, workInfo, threadPooledTimer, transactionContextManager);
    }
View Full Code Here

    public NontransactionalExecutorTaskFactory(TransactionContextManager transactionContextManager) {
        this.transactionContextManager = transactionContextManager;
    }

    public ExecutorTask createExecutorTask(Runnable userTask, WorkInfo workInfo, ThreadPooledTimer threadPooledTimer) {
        return new NontransactionalExecutorTask(userTask, workInfo, threadPooledTimer, transactionContextManager);
    }
View Full Code Here

*
* */
public class NontransactionalExecutorTaskFactory implements ExecutorTaskFactory {

    public ExecutorTask createExecutorTask(Runnable userTask, WorkInfo workInfo, ThreadPooledTimer threadPooledTimer) {
        return new NontransactionalExecutorTask(userTask, workInfo, threadPooledTimer);
    }
View Full Code Here

*
* */
public class NontransactionalExecutorTaskFactory implements ExecutorTaskFactory {

    public ExecutorTask createExecutorTask(Runnable userTask, WorkInfo workInfo, ThreadPooledTimer threadPooledTimer) {
        return new NontransactionalExecutorTask(userTask, workInfo, threadPooledTimer);
    }
View Full Code Here

    public NontransactionalExecutorTaskFactory(TransactionContextManager transactionContextManager) {
        this.transactionContextManager = transactionContextManager;
    }

    public ExecutorTask createExecutorTask(Runnable userTask, WorkInfo workInfo, ThreadPooledTimer threadPooledTimer) {
        return new NontransactionalExecutorTask(userTask, workInfo, threadPooledTimer, transactionContextManager);
    }
View Full Code Here

    public NontransactionalExecutorTaskFactory(TransactionContextManager transactionContextManager) {
        this.transactionContextManager = transactionContextManager;
    }

    public ExecutorTask createExecutorTask(Runnable userTask, WorkInfo workInfo, ThreadPooledTimer threadPooledTimer) {
        return new NontransactionalExecutorTask(userTask, workInfo, threadPooledTimer, transactionContextManager);
    }
View Full Code Here

TOP

Related Classes of org.apache.geronimo.timer.NontransactionalExecutorTask

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.