Package org.apache.geronimo.connector.work.pool

Examples of org.apache.geronimo.connector.work.pool.NullWorkExecutorPool


    public GeronimoWorkManager(int size, TransactionContextManager transactionContextManager) {
        this(size, size, size, transactionContextManager);
    }

    public GeronimoWorkManager(int syncSize, int startSize, int schedSize, TransactionContextManager transactionContextManager) {
        syncWorkExecutorPool = new NullWorkExecutorPool(syncSize);
        startWorkExecutorPool = new NullWorkExecutorPool(startSize);
        scheduledWorkExecutorPool = new NullWorkExecutorPool(schedSize);
        this.transactionContextManager = transactionContextManager;
    }
View Full Code Here


    public GeronimoWorkManager(int size, TransactionContextManager transactionContextManager) {
        this(size, size, size, transactionContextManager);
    }

    public GeronimoWorkManager(int syncSize, int startSize, int schedSize, TransactionContextManager transactionContextManager) {
        syncWorkExecutorPool = new NullWorkExecutorPool(syncSize);
        startWorkExecutorPool = new NullWorkExecutorPool(startSize);
        scheduledWorkExecutorPool = new NullWorkExecutorPool(schedSize);
        this.transactionContextManager = transactionContextManager;
    }
View Full Code Here

    public GeronimoWorkManager(int size, XAServices xaServices) {
        this(size, size, size, xaServices);
    }

    public GeronimoWorkManager(int syncSize, int startSize, int schedSize, XAServices xaServices) {
        syncWorkExecutorPool = new NullWorkExecutorPool(syncSize);
        startWorkExecutorPool = new NullWorkExecutorPool(startSize);
        scheduledWorkExecutorPool = new NullWorkExecutorPool(schedSize);
        this.xaServices = xaServices;
    }
View Full Code Here

    public GeronimoWorkManager(int size, TransactionContextManager transactionContextManager) {
        this(size, size, size, transactionContextManager);
    }

    public GeronimoWorkManager(int syncSize, int startSize, int schedSize, TransactionContextManager transactionContextManager) {
        syncWorkExecutorPool = new NullWorkExecutorPool(syncSize);
        startWorkExecutorPool = new NullWorkExecutorPool(startSize);
        scheduledWorkExecutorPool = new NullWorkExecutorPool(schedSize);
        this.transactionContextManager = transactionContextManager;
    }
View Full Code Here

    public GeronimoWorkManager(int size, TransactionContextManager transactionContextManager) {
        this(size, size, size, transactionContextManager);
    }

    public GeronimoWorkManager(int syncSize, int startSize, int schedSize, TransactionContextManager transactionContextManager) {
        syncWorkExecutorPool = new NullWorkExecutorPool(syncSize);
        startWorkExecutorPool = new NullWorkExecutorPool(startSize);
        scheduledWorkExecutorPool = new NullWorkExecutorPool(schedSize);
        this.transactionContextManager = transactionContextManager;
    }
View Full Code Here

TOP

Related Classes of org.apache.geronimo.connector.work.pool.NullWorkExecutorPool

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.