Package com.hazelcast.client
Interface ClientListener
- All Superinterfaces:
EventListener
The ClientListener provides the ability to listen to clients connecting and disconnecting from the member.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
clientConnected
(Client client) Invoked when a client is connected.void
clientDisconnected
(Client client) Invoked when a client is disconnected.
-
Method Details
-
clientConnected
Invoked when a client is connected.- Parameters:
client
- the client instance
-
clientDisconnected
Invoked when a client is disconnected.- Parameters:
client
- the client instance
-