Package com.hazelcast.client.util
Class ClientStateListener
java.lang.Object
com.hazelcast.client.util.ClientStateListener
- All Implemented Interfaces:
LifecycleListener,EventListener
Helper class for the user to track the lifecycle state of the client.
The user will instantiate this listener and it will be registered to the client configuration.
If the provided client config is not used while instantiating the client, this helper class
will not be useful. It is the user's responsibility to instantiate the client with the same
ClientConfig which was used to instantiate this helper.
-
Constructor Summary
ConstructorsConstructorDescriptionClientStateListener(ClientConfig clientConfig) Registers this instance with the provided client configurationClientStateListener(ClientFailoverConfig clientFailoverConfig) Registers this instance with the provided client configuration -
Method Summary
Modifier and TypeMethodDescriptionbooleanWaits until the client is connected to cluster.booleanawaitConnected(long timeout, TimeUnit unit) Waits until the client is connected to cluster or the timeout expires.booleanWaits until the client is disconnected from the cluster.booleanawaitDisconnected(long timeout, TimeUnit unit) Waits until the client is disconnected from the cluster or the timeout expires.booleanbooleanbooleanvoidstateChanged(LifecycleEvent event) Called when instance's state changes.
-
Constructor Details
-
ClientStateListener
Registers this instance with the provided client configurationThis constructor is introduced to let ClientStateListener to be used via
HazelcastClient.newHazelcastFailoverClient(ClientFailoverConfig)Listeners used in the different client configs registered to single
ClientFailoverConfigshould be same. It can be achieved using this constructor while the other constructorClientStateListener(ClientConfig)does not allow that usage.Note that ClientStateListener should be created after all the alternative client configs are added to the client failoverConfig. Example usage:
ClientFailoverConfig clientFailoverConfig = new ClientFailoverConfig(); clientFailoverConfig.addClientConfig(clientConfig).addClientConfig(clientConfig2); ClientStateListener listener = new ClientStateListener(clientFailoverConfig); HazelcastClient.newHazelcastFailoverClient(clientFailoverConfig);- Parameters:
clientFailoverConfig- The client configuration to which this listener will be registered- Since:
- 5.0
-
ClientStateListener
Registers this instance with the provided client configuration- Parameters:
clientConfig- The client configuration to which this listener will be registered
-
-
Method Details
-
stateChanged
Description copied from interface:LifecycleListenerCalled when instance's state changes. No blocking calls should be made in this method.- Specified by:
stateChangedin interfaceLifecycleListener- Parameters:
event- the Lifecycle event
-
awaitConnected
Waits until the client is connected to cluster or the timeout expires. Does not wait if the client is already shutting down or shutdown.- Parameters:
timeout- the maximum time to waitunit- the time unit of thetimeoutargument- Returns:
- true if the client is connected to the cluster. On returning false,
you can check if timeout occured or the client is shutdown using
isShutdowngetCurrentState - Throws:
InterruptedException
-
awaitConnected
Waits until the client is connected to cluster. Does not wait if the client is already shutting down or shutdown.- Returns:
- returns whatever
awaitConnected(long timeout, TimeUnit unit)returns. - Throws:
InterruptedException
-
awaitDisconnected
Waits until the client is disconnected from the cluster or the timeout expires. Does not wait if the client is already shutting down or shutdown.- Parameters:
timeout- the maximum time to waitunit- the time unit of thetimeoutargument- Returns:
- true if the client is disconnected from the cluster. On returning false,
you can check if timeout occured or the client is shutdown using
isShutdowngetCurrentState - Throws:
InterruptedException
-
awaitDisconnected
Waits until the client is disconnected from the cluster. Does not wait if the client is already shutting down or shutdown.- Returns:
- returns whatever
awaitDisconnected(long timeout, TimeUnit unit)returns. - Throws:
InterruptedException
-
isConnected
public boolean isConnected()- Returns:
- true if the client is connected.
-
isShutdown
public boolean isShutdown()- Returns:
- true if the client is shutdown.
-
isStarted
public boolean isStarted()- Returns:
- true if the client is started.
-
getCurrentState
- Returns:
- The current lifecycle state of the client.
-