Package org.apache.geronimo.timer

Examples of org.apache.geronimo.timer.TransactionalExecutorTaskFactory


public class VMStoreThreadPooledTransactionalTimer extends ThreadPooledTimer {

    public VMStoreThreadPooledTransactionalTimer(int repeatCount,
            TransactionManager transactionManager,
            Executor threadPool) {
        super(new TransactionalExecutorTaskFactory(transactionManager, repeatCount),
                new VMWorkerPersistence(), threadPool, transactionManager);
    }
View Full Code Here


    public JDBCStoreThreadPooledTransactionalTimer(int repeatCount,
            TransactionManager transactionManager,
            ResourceSource<ResourceException> managedConnectionFactoryWrapper,
            Executor threadPool,
            Kernel kernel) throws SQLException, ResourceException {
        super(new TransactionalExecutorTaskFactory(transactionManager, repeatCount),
                new JDBCWorkerPersistence(kernel.getKernelName(), (DataSource)managedConnectionFactoryWrapper.$getResource(), false), threadPool, transactionManager);
    }
View Full Code Here

public class VMStoreThreadPooledTransactionalTimer extends ThreadPooledTimer {

    public VMStoreThreadPooledTransactionalTimer(int repeatCount,
            TransactionContextManager transactionContextManager,
            Executor threadPool) {
        super(new TransactionalExecutorTaskFactory(transactionContextManager, repeatCount),
                new VMWorkerPersistence(), threadPool, transactionContextManager);
    }
View Full Code Here

    public JDBCStoreThreadPooledTransactionalTimer(int repeatCount,
            TransactionContextManager transactionContextManager,
            ConnectionFactorySource managedConnectionFactoryWrapper,
            Executor threadPool,
            Kernel kernel) throws SQLException {
        super(new TransactionalExecutorTaskFactory(transactionContextManager, repeatCount),
                new JDBCWorkerPersistence(kernel.getKernelName(), (DataSource)managedConnectionFactoryWrapper.$getResource(), false), threadPool, transactionContextManager);
    }
View Full Code Here

    public JDBCStoreThreadPooledTransactionalTimer(int repeatCount,
            TransactionManager transactionManager,
            ConnectionFactorySource managedConnectionFactoryWrapper,
            Executor threadPool,
            Kernel kernel) throws SQLException {
        super(new TransactionalExecutorTaskFactory(transactionManager, repeatCount),
                new JDBCWorkerPersistence(kernel.getKernelName(), (DataSource)managedConnectionFactoryWrapper.$getResource(), false), threadPool, transactionManager);
    }
View Full Code Here

public class VMStoreThreadPooledTransactionalTimer extends ThreadPooledTimer {

    public VMStoreThreadPooledTransactionalTimer(int repeatCount,
            TransactionContextManager transactionContextManager,
            Executor threadPool) {
        super(new TransactionalExecutorTaskFactory(transactionContextManager, repeatCount),
                new VMWorkerPersistence(), threadPool, transactionContextManager);
    }
View Full Code Here

            TransactionContextManager transactionContextManager,
            ManagedConnectionFactoryWrapper managedConnectionFactoryWrapper,
            Executor threadPool,
            Serializable derbySystem,
            Kernel kernel) throws SQLException {
        super(new TransactionalExecutorTaskFactory(transactionContextManager, repeatCount),
                new JDBCWorkerPersistence(kernel.getKernelName(), (DataSource)managedConnectionFactoryWrapper.$getResource(), false), threadPool, transactionContextManager);
    }
View Full Code Here

public class VMStoreThreadPooledTransactionalTimer extends ThreadPooledTimer {

    public VMStoreThreadPooledTransactionalTimer(int repeatCount,
            TransactionManager transactionManager,
            Executor threadPool) {
        super(new TransactionalExecutorTaskFactory(transactionManager, repeatCount),
                new VMWorkerPersistence(), threadPool, transactionManager);
    }
View Full Code Here

    public JDBCStoreThreadPooledTransactionalTimer(int repeatCount,
            TransactionManager transactionManager,
            ConnectionFactorySource managedConnectionFactoryWrapper,
            Executor threadPool,
            Kernel kernel) throws SQLException, ResourceException {
        super(new TransactionalExecutorTaskFactory(transactionManager, repeatCount),
                new JDBCWorkerPersistence(kernel.getKernelName(), (DataSource)managedConnectionFactoryWrapper.$getResource(), false), threadPool, transactionManager);
    }
View Full Code Here

    public JDBCStoreThreadPooledTransactionalTimer(int repeatCount,
            TransactionManager transactionManager,
            ConnectionFactorySource managedConnectionFactoryWrapper,
            Executor threadPool,
            Kernel kernel) throws SQLException, ResourceException {
        super(new TransactionalExecutorTaskFactory(transactionManager, repeatCount),
                new JDBCWorkerPersistence(kernel.getKernelName(), (DataSource)managedConnectionFactoryWrapper.$getResource(), false), threadPool, transactionManager);
    }
View Full Code Here

TOP

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

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.