Package org.nebulaframework.grid.cluster.manager.services.messaging

Examples of org.nebulaframework.grid.cluster.manager.services.messaging.ServiceMessageSender


          // Send banned message
          ServiceMessage message = new ServiceMessage(msgBody,
                                                      ServiceMessageType.NODE_BANNED);
         
          try {
            ServiceMessageSender sender = ClusterManager.getInstance().getServiceMessageSender();
            sender.sendServiceMessage(message);
            log.warn("[JobService] Failing GridNode Banned : " + workerId);
          } catch (Exception e) {
            log.error("Error Sending Message", e);
          }
         
View Full Code Here

TOP

Related Classes of org.nebulaframework.grid.cluster.manager.services.messaging.ServiceMessageSender

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.