Package org.apache.stratos.load.balancer.common.statistics.notifier

Examples of org.apache.stratos.load.balancer.common.statistics.notifier.LoadBalancerStatisticsNotifier


            if(configuration.isCepStatsPublisherEnabled()) {
                // Get stats reader
                LoadBalancerStatisticsReader statsReader = LoadBalancerStatisticsCollector.getInstance();

                // Start stats notifier thread
                statisticsNotifier = new LoadBalancerStatisticsNotifier(statsReader);
                Thread statsNotifierThread = new Thread(statisticsNotifier);
                statsNotifierThread.start();
                if (log.isInfoEnabled()) {
                    log.info("Load balancer statistics notifier thread started");
                }
View Full Code Here


            Thread topologyReceiverThread = new Thread(topologyEventReceiver);
            topologyReceiverThread.start();

            if(statsReader != null) {
                // Start stats notifier thread
                statisticsNotifier = new LoadBalancerStatisticsNotifier(statsReader);
                Thread statsNotifierThread = new Thread(statisticsNotifier);
                statsNotifierThread.start();
            }
            else {
                if(log.isWarnEnabled()) {
View Full Code Here

TOP

Related Classes of org.apache.stratos.load.balancer.common.statistics.notifier.LoadBalancerStatisticsNotifier

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.