Package org.apache.openejb.concurrencyutilities.ee.impl

Examples of org.apache.openejb.concurrencyutilities.ee.impl.ManagedExecutorServiceImpl


    private Duration keepAlive = new Duration("5 second");
    private int queue = 15;
    private String threadFactory;

    public ManagedExecutorServiceImpl create() {
        return new ManagedExecutorServiceImpl(createExecutorService());
    }
View Full Code Here


    private int queue = 15;
    private String threadFactory;
    private Duration waitAtShutdown = new Duration("30 seconds");

    public ManagedExecutorServiceImpl create() {
        return new ManagedExecutorServiceImpl(createExecutorService(), waitAtShutdown);
    }
View Full Code Here

TOP

Related Classes of org.apache.openejb.concurrencyutilities.ee.impl.ManagedExecutorServiceImpl

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.