Interface ClientMembershipListener

All Known Implementing Classes:
ClientMembershipListenerAdapter

public interface ClientMembershipListener
A listener whose callback methods are invoked when this process detects connection changes to CacheServers or clients.
Since:
GemFire 8.0
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Invoked when a client has unexpectedly disconnected from this process or when this process has unexpectedly disconnected from a CacheServer.
    void
    Invoked when a client has connected to this process or when this process has connected to a CacheServer.
    void
    Invoked when a client has gracefully disconnected from this process or when this process has gracefully disconnected from a CacheServer.
  • Method Details

    • memberJoined

      void memberJoined(ClientMembershipEvent event)
      Invoked when a client has connected to this process or when this process has connected to a CacheServer.
      Parameters:
      event - the triggering event
    • memberLeft

      void memberLeft(ClientMembershipEvent event)
      Invoked when a client has gracefully disconnected from this process or when this process has gracefully disconnected from a CacheServer.
      Parameters:
      event - the triggering event
    • memberCrashed

      void memberCrashed(ClientMembershipEvent event)
      Invoked when a client has unexpectedly disconnected from this process or when this process has unexpectedly disconnected from a CacheServer.
      Parameters:
      event - the triggering event