Uses of Interface
net.sf.ehcache.cluster.ClusterNode
-
Packages that use ClusterNode Package Description net.sf.ehcache This package contains the public API for using ehcache.net.sf.ehcache.cluster This package contains the API for accessing the cluster node topology and registering to receive events about changes in the cluster node topology.net.sf.ehcache.terracotta This package contains the Terracotta integration functionalities. -
-
Uses of ClusterNode in net.sf.ehcache
Methods in net.sf.ehcache with parameters of type ClusterNode Modifier and Type Method Description voidCacheClusterStateStatisticsListener. clusterOffline(ClusterNode node)voidCacheClusterStateStatisticsListener. clusterOnline(ClusterNode node)voidCacheClusterStateStatisticsListener. clusterRejoined(ClusterNode oldNode, ClusterNode newNode)voidCacheClusterStateStatisticsListener. nodeJoined(ClusterNode node)voidCacheClusterStateStatisticsListener. nodeLeft(ClusterNode node) -
Uses of ClusterNode in net.sf.ehcache.cluster
Methods in net.sf.ehcache.cluster that return ClusterNode Modifier and Type Method Description ClusterNodeCacheCluster. getCurrentNode()Retrieves theClusterNodeinstance that corresponds to the current node.ClusterNodeNoopCacheCluster. getCurrentNode()Retrieves theClusterNodeinstance that corresponds to the current node.ClusterNodeCacheCluster. waitUntilNodeJoinsCluster()Waits until the current node has successfully joined the cluster.ClusterNodeNoopCacheCluster. waitUntilNodeJoinsCluster()Waits until the current node has successfully joined the cluster.Methods in net.sf.ehcache.cluster that return types with arguments of type ClusterNode Modifier and Type Method Description java.util.Collection<ClusterNode>CacheCluster. getNodes()Get all the nodes in the clusterjava.util.Collection<ClusterNode>NoopCacheCluster. getNodes()Get all the nodes in the clusterMethods in net.sf.ehcache.cluster with parameters of type ClusterNode Modifier and Type Method Description voidClusterTopologyListener. clusterOffline(ClusterNode node)This node has lost contact (possibly temporarily) with the cluster and cannot execute clustered operationsvoidClusterTopologyListener. clusterOnline(ClusterNode node)This node has established contact with the cluster and can execute clustered operations.voidClusterTopologyListener. clusterRejoined(ClusterNode oldNode, ClusterNode newNode)This node lost contact and rejoined the cluster again.voidClusterTopologyListener. nodeJoined(ClusterNode node)A node has joined the clustervoidClusterTopologyListener. nodeLeft(ClusterNode node)A node has left the cluster -
Uses of ClusterNode in net.sf.ehcache.terracotta
Classes in net.sf.ehcache.terracotta that implement ClusterNode Modifier and Type Class Description classDisconnectedClusterNodeClusterNode which copies a disconnected ClusterNode without keeping any reference to the original one.Methods in net.sf.ehcache.terracotta that return ClusterNode Modifier and Type Method Description ClusterNodeTerracottaCacheCluster. getCurrentNode()Retrieves theClusterNodeinstance that corresponds to the current node.ClusterNodeTerracottaCacheCluster. waitUntilNodeJoinsCluster()Waits until the current node has successfully joined the cluster.Methods in net.sf.ehcache.terracotta that return types with arguments of type ClusterNode Modifier and Type Method Description java.util.Collection<ClusterNode>TerracottaCacheCluster. getNodes()Get all the nodes in the clusterConstructors in net.sf.ehcache.terracotta with parameters of type ClusterNode Constructor Description DisconnectedClusterNode(ClusterNode node)Constructor accepting the disconnected node
-