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 int
connectionCount()
void
disableStatistics()
disable statistics gatheringvoid
enableStatistics()
enable statistics gatheringString
getUpdateClusterFilter()
boolean
isAllowLinkStealingEnabled()
Returns true if link stealing is enabled on this Connectorboolean
isRebalanceClusterClients()
boolean
isStatisticsEnabled()
Returns true if statistics is enabledboolean
isUpdateClusterClients()
boolean
isUpdateClusterClientsOnRemove()
void
resetStatistics()
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
-
-