Package org.activemq.work.pool

Examples of org.activemq.work.pool.NullWorkExecutorPool


    public SpringWorkManager(int size, XAWork xaServices) {
        this(size, size, size, xaServices);
    }

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

TOP

Related Classes of org.activemq.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.