Package org.rhq.server.metrics

Examples of org.rhq.server.metrics.StorageClientThreadFactory


        // See https://bugzilla.redhat.com/show_bug.cgi?id=1084626 for details
        if (numWorkers < 2) {
            numWorkers = 2;
        }
        threadPool = new ThreadPoolExecutor(numWorkers, numWorkers, 30, TimeUnit.SECONDS,
            new LinkedBlockingQueue<Runnable>(), new StorageClientThreadFactory("AggregationTasks"));
        aggregationTasks = MoreExecutors.listeningDecorator(threadPool);
    }
View Full Code Here

TOP

Related Classes of org.rhq.server.metrics.StorageClientThreadFactory

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.