Package org.apache.activemq.broker.jmx
Interface ConnectorViewMBean
-
- All Superinterfaces:
Service
- All Known Implementing Classes:
ConnectorView
public interface ConnectorViewMBean extends Service
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intconnectionCount()voiddisableStatistics()disable statistics gatheringvoidenableStatistics()enable statistics gatheringStringgetUpdateClusterFilter()booleanisAllowLinkStealingEnabled()Returns true if link stealing is enabled on this ConnectorbooleanisRebalanceClusterClients()booleanisStatisticsEnabled()Returns true if statistics is enabledbooleanisUpdateClusterClients()booleanisUpdateClusterClientsOnRemove()voidresetStatistics()Resets the statistics
-
-
-
Method Detail
-
connectionCount
int connectionCount()
-
resetStatistics
void resetStatistics()
Resets the statistics
-
enableStatistics
void enableStatistics()
enable statistics gathering
-
disableStatistics
void disableStatistics()
disable statistics gathering
-
isStatisticsEnabled
boolean isStatisticsEnabled()
Returns true if statistics is enabled- Returns:
- true if statistics is enabled
-
isAllowLinkStealingEnabled
boolean isAllowLinkStealingEnabled()
Returns true if link stealing is enabled on this Connector- Returns:
- true if link stealing is enabled.
-
isUpdateClusterClients
boolean isUpdateClusterClients()
- Returns:
- true if update client connections when brokers leave/join a cluster
-
isRebalanceClusterClients
boolean isRebalanceClusterClients()
- Returns:
- true if clients should be re-balanced across the cluster
-
isUpdateClusterClientsOnRemove
boolean isUpdateClusterClientsOnRemove()
- Returns:
- true if clients should be updated when a broker is removed from a broker
-
getUpdateClusterFilter
String getUpdateClusterFilter()
- Returns:
- The comma separated string of regex patterns to match broker names for cluster client updates
-
-