Class ZookeeperClusterManager
java.lang.Object
io.vertx.spi.cluster.zookeeper.ZookeeperClusterManager
- All Implemented Interfaces:
ClusteredNode, ClusterManager, VertxServiceProvider, org.apache.curator.framework.recipes.cache.PathChildrenCacheListener
public class ZookeeperClusterManager
extends Object
implements ClusterManager, org.apache.curator.framework.recipes.cache.PathChildrenCacheListener
A cluster manager that uses Zookeeper
- Author:
- Stream.Liu
-
Constructor Summary
ConstructorsConstructorDescriptionZookeeperClusterManager(JsonObject config) ZookeeperClusterManager(String resourceLocation) ZookeeperClusterManager(org.apache.curator.framework.CuratorFramework curator) ZookeeperClusterManager(org.apache.curator.framework.CuratorFramework curator, String nodeId) -
Method Summary
Modifier and TypeMethodDescriptionvoidaddRegistration(String address, RegistrationInfo registrationInfo, Completable<Void> promise) Share a new messaging handler registration with other nodes in the cluster.voidchildEvent(org.apache.curator.framework.CuratorFramework client, org.apache.curator.framework.recipes.cache.PathChildrenCacheEvent event) <K,V> void getAsyncMap(String name, Completable<AsyncMap<K, V>> promise) Return anAsyncMapfor the givenname.voidgetCounter(String name, Completable<Counter> promise) Return aCounterfor the givenname.org.apache.curator.framework.CuratorFrameworkvoidgetLockWithTimeout(String name, long timeout, Completable<Lock> promise) Return the unique node identifier for this node.Get details about this clustered node.voidgetNodeInfo(String nodeId, Completable<NodeInfo> promise) Get details about a specific node in the cluster.getNodes()Return a list of node identifiers corresponding to the nodes in the cluster.voidgetRegistrations(String address, Completable<List<RegistrationInfo>> promise) Get the messaging handler currently registered in the cluster.<K,V> Map <K, V> getSyncMap(String name) Return a synchronous map for the givenname.voidInvoked before this cluster node tries to join the cluster.booleanisActive()Is the cluster manager active?voidjoin(Completable<Void> promise) Join the cluster.voidleave(Completable<Void> promise) Leave the cluster.voidnodeListener(NodeListener listener) Set a listener that will be called when a node joins or leaves the cluster.voidregistrationListener(RegistrationListener registrationListener) Implementations must signal the providedregistrationListenerwhen messaging handler registrations are added or removed by sending aRegistrationUpdateEventwithRegistrationListener.registrationsUpdated(RegistrationUpdateEvent).voidremoveRegistration(String address, RegistrationInfo registrationInfo, Completable<Void> promise) Signal removal of a messaging handler registration to other nodes in the cluster.voidsetConfig(JsonObject conf) voidsetNodeInfo(NodeInfo nodeInfo, Completable<Void> promise) Store the details about this clustered node.Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface ClusterManager
clusterHost, clusterPublicHost, init
-
Constructor Details
-
ZookeeperClusterManager
public ZookeeperClusterManager() -
ZookeeperClusterManager
public ZookeeperClusterManager(org.apache.curator.framework.CuratorFramework curator) -
ZookeeperClusterManager
-
ZookeeperClusterManager
public ZookeeperClusterManager(org.apache.curator.framework.CuratorFramework curator, String nodeId) -
ZookeeperClusterManager
-
-
Method Details
-
setConfig
-
getConfig
-
getCuratorFramework
public org.apache.curator.framework.CuratorFramework getCuratorFramework() -
init
Description copied from interface:ClusterManagerInvoked before this cluster node tries to join the cluster.- Specified by:
initin interfaceClusterManager- Parameters:
vertx- the Vert.x instance
-
getAsyncMap
Description copied from interface:ClusterManagerReturn anAsyncMapfor the givenname.- Specified by:
getAsyncMapin interfaceClusterManager
-
getSyncMap
Description copied from interface:ClusterManagerReturn a synchronous map for the givenname.- Specified by:
getSyncMapin interfaceClusterManager
-
getLockWithTimeout
Description copied from interface:ClusterManager- Specified by:
getLockWithTimeoutin interfaceClusterManager
-
getCounter
Description copied from interface:ClusterManagerReturn aCounterfor the givenname.- Specified by:
getCounterin interfaceClusterManager
-
getNodeId
Description copied from interface:ClusteredNodeReturn the unique node identifier for this node.- Specified by:
getNodeIdin interfaceClusteredNode
-
getNodes
Description copied from interface:ClusteredNodeReturn a list of node identifiers corresponding to the nodes in the cluster.- Specified by:
getNodesin interfaceClusteredNode
-
registrationListener
Description copied from interface:ClusterManagerImplementations must signal the providedregistrationListenerwhen messaging handler registrations are added or removed by sending aRegistrationUpdateEventwithRegistrationListener.registrationsUpdated(RegistrationUpdateEvent).- Specified by:
registrationListenerin interfaceClusterManager- Parameters:
registrationListener- the registration listener
-
nodeListener
Description copied from interface:ClusterManagerSet a listener that will be called when a node joins or leaves the cluster.- Specified by:
nodeListenerin interfaceClusterManager
-
setNodeInfo
Description copied from interface:ClusterManagerStore the details about this clustered node.- Specified by:
setNodeInfoin interfaceClusterManager
-
getNodeInfo
Description copied from interface:ClusteredNodeGet details about this clustered node.- Specified by:
getNodeInfoin interfaceClusteredNode
-
getNodeInfo
Description copied from interface:ClusteredNodeGet details about a specific node in the cluster.- Specified by:
getNodeInfoin interfaceClusteredNode- Parameters:
nodeId- the clustered node id
-
join
Description copied from interface:ClusterManagerJoin the cluster.- Specified by:
joinin interfaceClusterManager
-
leave
Description copied from interface:ClusterManagerLeave the cluster.- Specified by:
leavein interfaceClusterManager
-
isActive
public boolean isActive()Description copied from interface:ClusterManagerIs the cluster manager active?- Specified by:
isActivein interfaceClusterManager- Returns:
- true if active, false otherwise
-
addRegistration
public void addRegistration(String address, RegistrationInfo registrationInfo, Completable<Void> promise) Description copied from interface:ClusterManagerShare a new messaging handler registration with other nodes in the cluster.- Specified by:
addRegistrationin interfaceClusterManager
-
removeRegistration
public void removeRegistration(String address, RegistrationInfo registrationInfo, Completable<Void> promise) Description copied from interface:ClusterManagerSignal removal of a messaging handler registration to other nodes in the cluster.- Specified by:
removeRegistrationin interfaceClusterManager
-
getRegistrations
Description copied from interface:ClusteredNodeGet the messaging handler currently registered in the cluster.- Specified by:
getRegistrationsin interfaceClusteredNode
-
childEvent
-