Package org.apache.geronimo.timer

Examples of org.apache.geronimo.timer.NontransactionalExecutorTaskFactory


*
* */
public class VMStoreThreadPooledNonTransactionalTimer extends ThreadPooledTimer {

    public VMStoreThreadPooledNonTransactionalTimer(TransactionManager transactionManager, Executor threadPool) {
        super(new NontransactionalExecutorTaskFactory(),
                new VMWorkerPersistence(), threadPool, transactionManager);
    }
View Full Code Here


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

*
* */
public class VMStoreThreadPooledNonTransactionalTimer extends ThreadPooledTimer {

    public VMStoreThreadPooledNonTransactionalTimer(TransactionContextManager transactionContextManager, Executor threadPool) {
        super(new NontransactionalExecutorTaskFactory(transactionContextManager),
                new VMWorkerPersistence(), threadPool, transactionContextManager);
    }
View Full Code Here

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

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

*
* */
public class VMStoreThreadPooledNonTransactionalTimer extends ThreadPooledTimer {

    public VMStoreThreadPooledNonTransactionalTimer(TransactionContextManager transactionContextManager, Executor threadPool) {
        super(new NontransactionalExecutorTaskFactory(transactionContextManager),
                new VMWorkerPersistence(), threadPool, transactionContextManager);
    }
View Full Code Here

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

*
* */
public class VMStoreThreadPooledNonTransactionalTimer extends ThreadPooledTimer {

    public VMStoreThreadPooledNonTransactionalTimer(TransactionManager transactionManager, Executor threadPool) {
        super(new NontransactionalExecutorTaskFactory(),
                new VMWorkerPersistence(), threadPool, transactionManager);
    }
View Full Code Here

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

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

TOP

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

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.