com.atlassian.confluence.cluster.nonclustered
Class NonClusterManager

java.lang.Object
  extended by com.atlassian.confluence.cluster.nonclustered.NonClusterManager
All Implemented Interfaces:
ClusterManager, NameResolver, LockFactory

public final class NonClusterManager
extends Object
implements ClusterManager


Constructor Summary
NonClusterManager()
           
 
Method Summary
 void configure(ClusterConfig config)
          Set a new cluster configuration.
 ClusteredLock getClusteredLock(String key)
          Get a distributed lock -- getting the lock does *not* imply that it has been acquired.
 ClusterInformation getClusterInformation()
          Get information about the running cluster.
 ClusterInvariants getClusterInvariants()
          Get all attributes of the server that must be consistent between cluster nodes.
 com.atlassian.core.task.FifoBuffer getFifoBuffer(String name)
          Get a distributed FIFO buffer
 Lock getLock(String name)
          Get a lock -- getting the lock does *not* imply that it has been acquired.
 Map<Integer,NodeStatus> getNodeStatuses()
          Gets status information from all members of the cluster.
 Map getNodeStatusesForCluster()
           
 int getPermittedClusterNodes()
           
 Serializable getPublishedObject(String key)
          Retrieve an object which another node in the cluster has shared, return null if no such object exists
 ClusterNodeInformation getThisNodeInformation()
           Get the identity of this node in the cluster.
 void init()
           
 boolean isClustered()
           
 boolean isClusterSupported()
          Check whether this Confluence distribution is capable of running in a cluster.
 boolean isConfigured()
           
 void publishEvent(ConfluenceEvent event)
          Publish an event as a ClusterEventWrapper to other nodes
 void publishObject(String key, Serializable object)
          Share an object to the cluster under a particular key
 void reconfigure(ClusterConfig config)
          Set a new cluster configuration and cycle the service
 InetAddress resolveName(String name)
           
 void shutdown()
           
 void startCluster()
          Start the clustering service
 void stopCluster()
          Stop the clustering service
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

NonClusterManager

public NonClusterManager()
Method Detail

init

public void init()

shutdown

public void shutdown()

configure

public void configure(ClusterConfig config)
Description copied from interface: ClusterManager
Set a new cluster configuration.

Specified by:
configure in interface ClusterManager

getClusterInformation

public ClusterInformation getClusterInformation()
Description copied from interface: ClusterManager
Get information about the running cluster.

Specified by:
getClusterInformation in interface ClusterManager

getClusteredLock

public ClusteredLock getClusteredLock(String key)
Description copied from interface: ClusterManager
Get a distributed lock -- getting the lock does *not* imply that it has been acquired. Call Lock.tryLock() or Lock.lock() on the returned object to acquire the lock.

Specified by:
getClusteredLock in interface ClusterManager

getFifoBuffer

public com.atlassian.core.task.FifoBuffer getFifoBuffer(String name)
Description copied from interface: ClusterManager
Get a distributed FIFO buffer

Specified by:
getFifoBuffer in interface ClusterManager

getPermittedClusterNodes

public int getPermittedClusterNodes()
Specified by:
getPermittedClusterNodes in interface ClusterManager
Returns:
the number of clustered nodes permitted by the license. Returns a value less than or equal to zero if clustering is not permitted.

getPublishedObject

public Serializable getPublishedObject(String key)
Description copied from interface: ClusterManager
Retrieve an object which another node in the cluster has shared, return null if no such object exists

Specified by:
getPublishedObject in interface ClusterManager
Returns:
a shared Object

getThisNodeInformation

public ClusterNodeInformation getThisNodeInformation()
Description copied from interface: ClusterManager

Get the identity of this node in the cluster. ClusterNodeInformation implements equals().

Specified by:
getThisNodeInformation in interface ClusterManager
Returns:
the identity of this node in the cluster. May return null if the node is not in a cluster.

isClustered

public boolean isClustered()
Specified by:
isClustered in interface ClusterManager
Returns:
true if this instance is configured to allow clustering with other nodes

isConfigured

public boolean isConfigured()
Specified by:
isConfigured in interface ClusterManager
Returns:
true if ClusterManager.configure(ClusterConfig) has been called with a valid configuration, otherwise false.

publishEvent

public void publishEvent(ConfluenceEvent event)
Description copied from interface: ClusterManager
Publish an event as a ClusterEventWrapper to other nodes

Specified by:
publishEvent in interface ClusterManager

isClusterSupported

public boolean isClusterSupported()
Description copied from interface: ClusterManager
Check whether this Confluence distribution is capable of running in a cluster. This differs from ClusterManager.isClustered() in that it will return true if the code to support clustering is present, even if this instance does not have a clustered license or a current clustering configuration.

Specified by:
isClusterSupported in interface ClusterManager
Returns:
true if this Confluence installation is capable of running in a cluster

publishObject

public void publishObject(String key,
                          Serializable object)
Description copied from interface: ClusterManager
Share an object to the cluster under a particular key

Specified by:
publishObject in interface ClusterManager

reconfigure

public void reconfigure(ClusterConfig config)
Description copied from interface: ClusterManager
Set a new cluster configuration and cycle the service

Specified by:
reconfigure in interface ClusterManager

startCluster

public void startCluster()
Description copied from interface: ClusterManager
Start the clustering service

Specified by:
startCluster in interface ClusterManager

stopCluster

public void stopCluster()
Description copied from interface: ClusterManager
Stop the clustering service

Specified by:
stopCluster in interface ClusterManager

resolveName

public InetAddress resolveName(String name)
Specified by:
resolveName in interface NameResolver

getLock

public Lock getLock(String name)
Description copied from interface: LockFactory
Get a lock -- getting the lock does *not* imply that it has been acquired. Call Lock.tryLock() or Lock.lock() on the returned object to acquire the lock.

Specified by:
getLock in interface LockFactory

getNodeStatuses

public Map<Integer,NodeStatus> getNodeStatuses()
Description copied from interface: ClusterManager
Gets status information from all members of the cluster.

Specified by:
getNodeStatuses in interface ClusterManager
Returns:
a map of node IDs to node statuses

getClusterInvariants

public ClusterInvariants getClusterInvariants()
Description copied from interface: ClusterManager
Get all attributes of the server that must be consistent between cluster nodes.

Specified by:
getClusterInvariants in interface ClusterManager
Returns:
the cluster invariants of this server

getNodeStatusesForCluster

public Map getNodeStatusesForCluster()
Specified by:
getNodeStatusesForCluster in interface ClusterManager


Copyright © 2003-2010 Atlassian. All Rights Reserved.