Package org.apache.geronimo.concurrent.executor

Examples of org.apache.geronimo.concurrent.executor.ComponentManagedExecutorService


            if (this.queueCapacity <= 0) {
                queue = new LinkedBlockingQueue<Runnable>();
            } else {
                queue = new ArrayBlockingQueue<Runnable>(this.queueCapacity);
            }
            this.executor = new ComponentManagedExecutorService(this.minPoolSize,
                                                                this.maxPoolSize,
                                                                this.keepAliveTime,
                                                                TimeUnit.MILLISECONDS,
                                                                queue,
                                                                this.threadFactory,
View Full Code Here

TOP

Related Classes of org.apache.geronimo.concurrent.executor.ComponentManagedExecutorService

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.