Package org.apache.stratos.messaging.broker.heartbeat

Examples of org.apache.stratos.messaging.broker.heartbeat.TopicHealthChecker


                subscribed = false;
        log.error("Error while subscribing to the topic: " + topicName, e);
      } finally {
                if(subscribed) {
                    // start the health checker if subscribed
                    healthChecker = new TopicHealthChecker(topicName);
                    Thread healthCheckerThread = new Thread(healthChecker);
                    healthCheckerThread.start();
                    try {
                        // waits till the thread finishes.
                        healthCheckerThread.join();
View Full Code Here

TOP

Related Classes of org.apache.stratos.messaging.broker.heartbeat.TopicHealthChecker

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.