All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gemstone.gemfire.distributed.internal.MembershipListener Maven / Gradle / Ivy

There is a newer version: 2.0-BETA
Show newest version
/*
 * Copyright (c) 2010-2015 Pivotal Software, Inc. All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you
 * may not use this file except in compliance with the License. You
 * may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
 * implied. See the License for the specific language governing
 * permissions and limitations under the License. See accompanying
 * LICENSE file.
 */

package com.gemstone.gemfire.distributed.internal;

import java.util.List;
import java.util.Set;

import com.gemstone.gemfire.distributed.internal.membership.*;

/**
 * This interface specifies callback methods that are invoked when
 * remote GemFire systems enter and exit the distributed cache.  Note
 * that a MembershipListener can be added from any VM, but
 * the callback methods are always invoked in the GemFire manager VM.
 * Thus, the callback methods should not perform time-consuming
 * operations.
 * 
 * It is possible to enforce ordering of MembershipListener invocations
 * by implementing the extension {@link OrderedMembershipListener} interface.
 * 
 * @see DistributionManager#addMembershipListener
 */
public interface MembershipListener {

  /**
   * This method is invoked when a new member joins the system
   *
   * @param id
   *        The id of the new member that has joined the system
   */
  public void memberJoined(InternalDistributedMember id);
  
  /**
   * This method is invoked after a member has explicitly left
   * the system.  It may not get invoked if a member becomes unreachable
   * due to crash or network problems.
   *
   * @param id
   *        The id of the new member that has joined the system
   * @param crashed 
   *        True if member did not depart in an orderly manner.
   */
  public void memberDeparted(InternalDistributedMember id, boolean crashed);

  /**
   * This method is invoked after the group membership service has
   * suspected that a member is no longer alive, but has not yet been
   * removed from the membership view
   * @param id the suspected member
   * @param whoSuspected the member that initiated suspect processing
   */
  public void memberSuspect(InternalDistributedMember id,
      InternalDistributedMember whoSuspected);
  
  /**
   * This is notification that more than 50% of member weight has been
   * lost in a single view change.  Notification is performed before
   * the view has been installed.
   * @param failures members that have been lost
   * @param remaining members that remain
   */
  public void quorumLost(Set failures, List remaining);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy