Class IgniteClusterManager
java.lang.Object
io.vertx.spi.cluster.ignite.IgniteClusterManager
- All Implemented Interfaces:
ClusteredNode, ClusterManager, VertxServiceProvider
Apache Ignite based cluster manager.
- Author:
- Andrey Gura, Lukas Prettenthaler
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.IgniteClusterManager(JsonObject jsonConfig) Creates cluster manager instance with given JSON configuration.IgniteClusterManager(IgniteOptions extOptions) Creates cluster manager instance with given IgniteOptions.IgniteClusterManager(URL configFile) Creates cluster manager instance with given Spring XML configuration file.IgniteClusterManager(org.apache.ignite.configuration.IgniteConfiguration extCfg) Creates cluster manager instance with given Ignite configuration.IgniteClusterManager(org.apache.ignite.Ignite ignite) Creates cluster manager instance with givenIgniteinstance. -
Method Summary
Modifier and TypeMethodDescriptionvoidaddRegistration(String address, RegistrationInfo registrationInfo, Completable<Void> promise) Share a new messaging handler registration with other nodes in the cluster.<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.ignite.IgniteReturns instance ofIgnite.voidgetLockWithTimeout(String name, long timeout, Completable<Lock> promise) Return the unique node identifier for this node.Get details about this clustered node.voidgetNodeInfo(String id, 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 nodeListener) 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.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
-
IgniteClusterManager
public IgniteClusterManager()Default constructor. Cluster manager will get configuration from classpath. -
IgniteClusterManager
public IgniteClusterManager(org.apache.ignite.configuration.IgniteConfiguration extCfg) Creates cluster manager instance with given Ignite configuration. Use this constructor in order to configure cluster manager programmatically.- Parameters:
extCfg-IgniteConfigurationinstance.
-
IgniteClusterManager
Creates cluster manager instance with given Spring XML configuration file. Use this constructor in order to configure cluster manager programmatically.- Parameters:
configFile-URLpath to Spring XML configuration file.
-
IgniteClusterManager
Creates cluster manager instance with given JSON configuration. Use this constructor in order to configure cluster manager programmatically.- Parameters:
jsonConfig-JsonObjectJSON configuration.
-
IgniteClusterManager
Creates cluster manager instance with given IgniteOptions. Use this constructor in order to configure cluster manager programmatically.- Parameters:
extOptions-IgniteOptionsoptions object.
-
IgniteClusterManager
public IgniteClusterManager(org.apache.ignite.Ignite ignite) Creates cluster manager instance with givenIgniteinstance.- Parameters:
ignite-Igniteinstance.
-
-
Method Details
-
getIgniteInstance
public org.apache.ignite.Ignite getIgniteInstance()Returns instance ofIgnite.- Returns:
Igniteinstance.
-
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
-
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
-
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
-
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:
id- the clustered node id
-
getNodes
Description copied from interface:ClusteredNodeReturn a list of node identifiers corresponding to the nodes in the cluster.- Specified by:
getNodesin interfaceClusteredNode
-
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
-