Package com.atlassian.confluence.cluster
Interface ClusterInformation
-
- All Known Implementing Classes:
EmptyClusterInformation,HazelcastClusterInformation,RemoteClusterInformation
public interface ClusterInformation
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @Nullable ClusterJoinConfiggetClusterJoinConfig()StringgetDescription()intgetMemberCount()List<String>getMembers()StringgetName()booleanisRunning()
-
-
-
Method Detail
-
isRunning
boolean isRunning()
-
getName
String getName()
-
getDescription
String getDescription()
-
getMembers
List<String> getMembers()
- Returns:
- a List of Strings with a description of each member of the cluster
-
getMemberCount
int getMemberCount()
- Returns:
- the number of members in the cluster
-
getClusterJoinConfig
@Nullable ClusterJoinConfig getClusterJoinConfig()
-
-