Package org.objectweb.joram.mom.notifications

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


   */
  private void clusterLeave() {
    // Removes this topic of its cluster
    if (friends != null) {
      // Sends a notification to all members asking to remove the topic
      sendToCluster(new ClusterRemoveNot());
      friends = null;
      setSave(); // state change, so save.
    }
  }
View Full Code Here


  /**
   * Ask this queue to leave the cluster.
   */
  private void clusterLeave() {
    sendToCluster(new ClusterRemoveNot());
    clusters.clear();
    clusters.put(getId(), new Float(1));
    if (logger.isLoggable(BasicLevel.DEBUG))
      logger.log(BasicLevel.DEBUG, "--- " + this + " ClusterQueue.leaveCluster: " + getId());
  }
View Full Code Here

TOP

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

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.