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 TypeMethodDescriptionvoidInvoked when a client has unexpectedly disconnected from this process or when this process has unexpectedly disconnected from a CacheServer.voidInvoked when a client has connected to this process or when this process has connected to a CacheServer.voidmemberLeft(ClientMembershipEvent event) Invoked when a client has gracefully disconnected from this process or when this process has gracefully disconnected from a CacheServer.
-
Method Details
-
memberJoined
Invoked when a client has connected to this process or when this process has connected to a CacheServer.- Parameters:
event- the triggering event
-
memberLeft
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
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
-