Package org.objectweb.joram.mom.notifications

Examples of org.objectweb.joram.mom.notifications.TopicForwardNot


    forwardMessages(messages, false);
  }

  private void forwardMessages(ClientMessages messages, boolean fromCluster) {
    if (!fromCluster) {
      sendToCluster(new TopicForwardNot(messages, true));
    }
    if (fatherId != null) {
      forward(fatherId, new TopicForwardNot(messages, false));

      if (logger.isLoggable(BasicLevel.DEBUG))
        logger.log(BasicLevel.DEBUG, "Messages forwarded to father " + fatherId.toString());
    }
  }
View Full Code Here

TOP

Related Classes of org.objectweb.joram.mom.notifications.TopicForwardNot

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.