Interface QuorumMXBean
- 
- All Known Implementing Classes:
- QuorumBean
 
 public interface QuorumMXBeanAn MBean representing a zookeeper cluster nodes (aka quorum peers)
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddisableDigest()booleangetDigestEnabled()intgetInitLimit()StringgetName()longgetObserverElectionDelayMS()intgetQuorumSize()intgetSyncLimit()booleanisPortUnification()booleanisSslQuorum()voidsetInitLimit(int initLimit)voidsetObserverElectionDelayMS(long delayMS)Set the Observer Leader Election Reconnect Delay time in MSvoidsetSyncLimit(int syncLimit)
 
- 
- 
- 
Method Detail- 
getNameString getName() - Returns:
- the name of the quorum
 
 - 
getQuorumSizeint getQuorumSize() - Returns:
- configured number of peers in the quorum
 
 - 
getInitLimitint getInitLimit() - Returns:
- the number of ticks that the initial synchronization phase can take
 
 - 
getSyncLimitint getSyncLimit() - Returns:
- the number of ticks that can pass between sending a request and getting an acknowledgment
 
 - 
setInitLimitvoid setInitLimit(int initLimit) - Parameters:
- initLimit- the number of ticks that the initial synchronization phase can take
 
 - 
setSyncLimitvoid setSyncLimit(int syncLimit) - Parameters:
- syncLimit- the number of ticks that can pass between sending a request and getting an acknowledgment
 
 - 
isSslQuorumboolean isSslQuorum() - Returns:
- SSL communication between quorum members required
 
 - 
isPortUnificationboolean isPortUnification() - Returns:
- SSL communication between quorum members enabled
 
 - 
getObserverElectionDelayMSlong getObserverElectionDelayMS() - Returns:
- Observer Leader Election Reconnect Delay time in MS
 
 - 
setObserverElectionDelayMSvoid setObserverElectionDelayMS(long delayMS) Set the Observer Leader Election Reconnect Delay time in MS
 - 
getDigestEnabledboolean getDigestEnabled() 
 - 
disableDigestvoid disableDigest() 
 
- 
 
-