public class HornetQServerControlImpl extends AbstractControl implements HornetQServerControl, NotificationEmitter, NotificationListener
storageManager| Constructor and Description |
|---|
HornetQServerControlImpl(PostOffice postOffice,
Configuration configuration,
ResourceManager resourceManager,
RemotingService remotingService,
HornetQServer messagingServer,
MessageCounterManager messageCounterManager,
StorageManager storageManager,
NotificationBroadcasterSupport broadcaster) |
| Modifier and Type | Method and Description |
|---|---|
void |
addAddressSettings(String address,
String DLA,
String expiryAddress,
long expiryDelay,
boolean lastValueQueue,
int deliveryAttempts,
long maxSizeBytes,
int pageSizeBytes,
int pageMaxCacheSize,
long redeliveryDelay,
double redeliveryMultiplier,
long maxRedeliveryDelay,
long redistributionDelay,
boolean sendToDLAOnNoRoute,
String addressFullMessagePolicy,
long slowConsumerThreshold,
long slowConsumerCheckPeriod,
String slowConsumerPolicy)
adds a new address setting for a specific address
|
void |
addNotificationListener(NotificationListener listener,
NotificationFilter filter,
Object handback) |
void |
addSecuritySettings(String addressMatch,
String sendRoles,
String consumeRoles,
String createDurableQueueRoles,
String deleteDurableQueueRoles,
String createNonDurableQueueRoles,
String deleteNonDurableQueueRoles,
String manageRoles) |
boolean |
closeConnectionsForAddress(String ipAddress)
Closes all the connections of clients connected to this server which matches the specified IP address.
|
boolean |
closeConnectionsForUser(String userName)
Closes all the connections of sessions with a matching user name.
|
boolean |
closeConsumerConnectionsForAddress(String address)
Closes all the connections of clients connected to this server which matches the specified IP address.
|
boolean |
commitPreparedTransaction(String transactionAsBase64)
Heuristically commits a prepared transaction.
|
void |
createBridge(String name,
String queueName,
String forwardingAddress,
String filterString,
String transformerClassName,
long retryInterval,
double retryIntervalMultiplier,
int initialConnectAttempts,
int reconnectAttempts,
boolean useDuplicateDetection,
int confirmationWindowSize,
long clientFailureCheckPeriod,
String connectorNames,
boolean useDiscoveryGroup,
boolean ha,
String user,
String password) |
void |
createDivert(String name,
String routingName,
String address,
String forwardingAddress,
boolean exclusive,
String filterString,
String transformerClassName) |
void |
createQueue(String address,
String name)
Create a durable queue.
|
void |
createQueue(String address,
String name,
boolean durable)
Create a queue.
|
void |
createQueue(String address,
String name,
String filterStr,
boolean durable)
Create a queue.
|
void |
deployQueue(String address,
String name,
String filterString)
Deploy a durable queue.
|
void |
deployQueue(String address,
String name,
String filterStr,
boolean durable)
Deploy a queue.
|
void |
destroyBridge(String name) |
void |
destroyDivert(String name) |
void |
destroyQueue(String name)
Destroys the queue corresponding to the specified name.
|
void |
disableMessageCounters()
Disables message counters for this server.
|
void |
enableMessageCounters()
Enables message counters for this server.
|
protected MBeanOperationInfo[] |
fillMBeanOperationInfo() |
void |
forceFailover() |
String[] |
getAddressNames()
Returns the addresses created on this server.
|
String |
getAddressSettingsAsJSON(String address)
returns the address settings as a JSON string
|
String |
getBindingsDirectory()
Returns the file system directory used to store bindings.
|
String[] |
getBridgeNames() |
int |
getConnectionCount()
Returns the number of connections connected to this server.
|
long |
getConnectionTTLOverride()
Returns the connection time to live.
|
Object[] |
getConnectors()
Returns the connectors configured for this server.
|
String |
getConnectorsAsJSON()
Returns the connectors configured for this server using JSON serialization.
|
String[] |
getDivertNames() |
int |
getIDCacheSize()
Returns the size of the cache for pre-creating message IDs.
|
String[] |
getIncomingInterceptorClassNames()
Returns the list of interceptors used by this server for incoming messages.
|
String[] |
getInterceptorClassNames()
Returns the list of interceptors used by this server.
|
int |
getJournalBufferSize()
Returns the size of the internal buffer on the journal.
|
int |
getJournalBufferTimeout()
Returns the timeout (in nanoseconds) used to flush internal buffers on the journal.
|
int |
getJournalCompactMinFiles()
Returns the minimal number of journal files before compacting.
|
int |
getJournalCompactPercentage()
Return the percentage of live data before compacting the journal.
|
String |
getJournalDirectory()
Returns the file system directory used to store journal log.
|
int |
getJournalFileSize()
Returns the size (in bytes) of each journal files.
|
int |
getJournalMaxIO()
Returns the maximum number of write requests that can be in the AIO queue at any given time.
|
int |
getJournalMinFiles()
Returns the number of journal files to pre-create.
|
String |
getJournalType()
Returns the type of journal used by this server (either
NIO or ASYNCIO). |
String |
getLargeMessagesDirectory()
Returns the file system directory used to store large messages.
|
String |
getManagementAddress()
Returns the management address of this server.
|
String |
getManagementNotificationAddress()
Returns the management notification address of this server.
|
int |
getMessageCounterMaxDayCount()
Returns the maximum number of days kept in memory for message counter.
|
long |
getMessageCounterSamplePeriod()
Returns the sample period (in milliseconds) to take message counter snapshot.
|
long |
getMessageExpiryScanPeriod()
Returns the frequency (in milliseconds) to scan messages to detect which messages
have expired.
|
long |
getMessageExpiryThreadPriority()
Returns the priority of the thread used to scan message expiration.
|
MBeanNotificationInfo[] |
getNotificationInfo() |
String[] |
getOutgoingInterceptorClassNames()
Returns the list of interceptors used by this server for outgoing messages.
|
String |
getPagingDirectory()
Returns the file system directory used to store paging files.
|
String[] |
getQueueNames()
Returns the names of the queues created on this server.
|
Object[] |
getRoles(String addressMatch) |
String |
getRolesAsJSON(String addressMatch) |
int |
getScheduledThreadPoolMaxSize()
Returns the maximum number of threads in the scheduled thread pool.
|
long |
getSecurityInvalidationInterval()
Returns the interval time (in milliseconds) to invalidate security credentials.
|
int |
getThreadPoolMaxSize()
Returns the maximum number of threads in the thread pool.
|
long |
getTransactionTimeout()
Returns the timeout (in milliseconds) after which transactions is removed
from the resource manager after it was created.
|
long |
getTransactionTimeoutScanPeriod()
Returns the frequency (in milliseconds) to scan transactions to detect which transactions
have timed out.
|
String |
getVersion()
Returns this server's version.
|
boolean |
isAsyncConnectionExecutionEnabled()
Returns whether code coming from connection is executed asynchronously or not.
|
boolean |
isBackup()
Returns
true if this server is a backup, false if it is a live server. |
boolean |
isClustered()
Returns whether this server is clustered.
|
boolean |
isCreateBindingsDir()
Returns whether the bindings directory is created on this server startup.
|
boolean |
isCreateJournalDir()
Returns whether the journal directory is created on this server startup.
|
boolean |
isFailoverOnServerShutdown()
returns if clients failover on a server shutdown
|
boolean |
isJournalSyncNonTransactional()
Returns whether the journal is synchronized when receiving non-transactional data.
|
boolean |
isJournalSyncTransactional()
Returns whether the journal is synchronized when receiving transactional data.
|
boolean |
isMessageCounterEnabled()
Returns whether message counter is enabled for this server.
|
boolean |
isPersistDeliveryCountBeforeDelivery()
Returns whether delivery count is persisted before messages are delivered to the consumers.
|
boolean |
isPersistenceEnabled()
Returns whether this server is using persistence and store data.
|
boolean |
isPersistIDCache()
Returns whether message ID cache is persisted.
|
boolean |
isSecurityEnabled()
Returns whether security is enabled for this server.
|
boolean |
isSharedStore()
Returns whether this server shares its data store with a corresponding live or backup server.
|
boolean |
isStarted()
Return whether this server is started.
|
boolean |
isWildcardRoutingEnabled()
Returns whether wildcard routing is supported by this server.
|
String[] |
listConnectionIDs()
Lists all the IDs of the connections connected to this server.
|
String[] |
listHeuristicCommittedTransactions()
List transactions which have been heuristically committed.
|
String[] |
listHeuristicRolledBackTransactions()
List transactions which have been heuristically rolled back.
|
String |
listPreparedTransactionDetailsAsHTML()
List all the prepared transaction, sorted by date,
oldest first, with details, in HTML format
|
String |
listPreparedTransactionDetailsAsJSON()
List all the prepared transaction, sorted by date,
oldest first, with details, in text format.
|
String[] |
listPreparedTransactions()
List all the prepared transaction, sorted by date, oldest first.
|
String |
listProducersInfoAsJSON() |
String[] |
listRemoteAddresses()
Lists the addresses of all the clients connected to this address.
|
String[] |
listRemoteAddresses(String ipAddress)
Lists the addresses of the clients connected to this address which matches the specified IP address.
|
String[] |
listSessions(String connectionID)
Lists all the sessions IDs for the specified connection ID.
|
String[] |
listTargetAddresses(String sessionID) |
void |
onNotification(Notification notification) |
void |
removeAddressSettings(String addressMatch) |
void |
removeNotificationListener(NotificationListener listener) |
void |
removeNotificationListener(NotificationListener listener,
NotificationFilter filter,
Object handback) |
void |
removeSecuritySettings(String addressMatch) |
void |
resetAllMessageCounterHistories()
Reset histories for all message counters.
|
void |
resetAllMessageCounters()
Reset all message counters.
|
boolean |
rollbackPreparedTransaction(String transactionAsBase64)
Heuristically rolls back a prepared transaction.
|
void |
sendQueueInfoToQueue(String queueName,
String address)
This method is used by HornetQ clustering and must not be called by HornetQ clients.
|
void |
setFailoverOnServerShutdown(boolean failoverOnServerShutdown)
do any clients failover on a server shutdown
|
void |
setMessageCounterMaxDayCount(int count)
Sets the maximum number of days kept in memory for message counter.
|
void |
setMessageCounterSamplePeriod(long newPeriod)
Sets the sample period to take message counter snapshot.
|
blockOnIO, clearIO, getMBeanInfocacheMBeanInfo, getAttribute, getAttributes, getCachedMBeanInfo, getClassName, getConstructors, getDescription, getDescription, getDescription, getDescription, getDescription, getDescription, getDescription, getImpact, getImplementation, getImplementationClass, getMBeanInterface, getParameterName, getParameterName, invoke, postDeregister, postRegister, preDeregister, preRegister, setAttribute, setAttributes, setImplementationpublic HornetQServerControlImpl(PostOffice postOffice, Configuration configuration, ResourceManager resourceManager, RemotingService remotingService, HornetQServer messagingServer, MessageCounterManager messageCounterManager, StorageManager storageManager, NotificationBroadcasterSupport broadcaster) throws Exception
Exceptionpublic boolean isStarted()
HornetQServerControlisStarted in interface HornetQServerControlpublic String getVersion()
HornetQServerControlgetVersion in interface HornetQServerControlpublic boolean isBackup()
HornetQServerControltrue if this server is a backup, false if it is a live server.
false.isBackup in interface HornetQServerControlpublic boolean isSharedStore()
HornetQServerControlisSharedStore in interface HornetQServerControlpublic String getBindingsDirectory()
HornetQServerControlgetBindingsDirectory in interface HornetQServerControlpublic String[] getInterceptorClassNames()
HornetQServerControlgetIncomingInterceptorClassNames().getInterceptorClassNames in interface HornetQServerControlInterceptorpublic String[] getIncomingInterceptorClassNames()
HornetQServerControlgetIncomingInterceptorClassNames in interface HornetQServerControlInterceptorpublic String[] getOutgoingInterceptorClassNames()
HornetQServerControlgetOutgoingInterceptorClassNames in interface HornetQServerControlInterceptorpublic int getJournalBufferSize()
HornetQServerControlgetJournalBufferSize in interface HornetQServerControlpublic int getJournalBufferTimeout()
HornetQServerControlgetJournalBufferTimeout in interface HornetQServerControlpublic void setFailoverOnServerShutdown(boolean failoverOnServerShutdown)
HornetQServerControlsetFailoverOnServerShutdown in interface HornetQServerControlpublic boolean isFailoverOnServerShutdown()
HornetQServerControlisFailoverOnServerShutdown in interface HornetQServerControlpublic int getJournalMaxIO()
HornetQServerControlgetJournalMaxIO in interface HornetQServerControlpublic String getJournalDirectory()
HornetQServerControlgetJournalDirectory in interface HornetQServerControlpublic int getJournalFileSize()
HornetQServerControlgetJournalFileSize in interface HornetQServerControlpublic int getJournalMinFiles()
HornetQServerControlgetJournalMinFiles in interface HornetQServerControlpublic int getJournalCompactMinFiles()
HornetQServerControlgetJournalCompactMinFiles in interface HornetQServerControlpublic int getJournalCompactPercentage()
HornetQServerControlgetJournalCompactPercentage in interface HornetQServerControlpublic boolean isPersistenceEnabled()
HornetQServerControlisPersistenceEnabled in interface HornetQServerControlpublic String getJournalType()
HornetQServerControlNIO or ASYNCIO).getJournalType in interface HornetQServerControlpublic String getPagingDirectory()
HornetQServerControlgetPagingDirectory in interface HornetQServerControlpublic int getScheduledThreadPoolMaxSize()
HornetQServerControlgetScheduledThreadPoolMaxSize in interface HornetQServerControlpublic int getThreadPoolMaxSize()
HornetQServerControlgetThreadPoolMaxSize in interface HornetQServerControlpublic long getSecurityInvalidationInterval()
HornetQServerControlgetSecurityInvalidationInterval in interface HornetQServerControlpublic boolean isClustered()
HornetQServerControlisClustered in interface HornetQServerControlpublic boolean isCreateBindingsDir()
HornetQServerControlisCreateBindingsDir in interface HornetQServerControlpublic boolean isCreateJournalDir()
HornetQServerControlisCreateJournalDir in interface HornetQServerControlpublic boolean isJournalSyncNonTransactional()
HornetQServerControlisJournalSyncNonTransactional in interface HornetQServerControlpublic boolean isJournalSyncTransactional()
HornetQServerControlisJournalSyncTransactional in interface HornetQServerControlpublic boolean isSecurityEnabled()
HornetQServerControlisSecurityEnabled in interface HornetQServerControlpublic boolean isAsyncConnectionExecutionEnabled()
HornetQServerControlisAsyncConnectionExecutionEnabled in interface HornetQServerControlpublic void deployQueue(String address, String name, String filterString) throws Exception
HornetQServerControldeployQueue in interface HornetQServerControladdress - address to bind the queue toname - name of the queuefilterString - of the queueExceptionpublic void deployQueue(String address, String name, String filterStr, boolean durable) throws Exception
HornetQServerControldeployQueue in interface HornetQServerControladdress - address to bind the queue toname - name of the queuefilterStr - of the queuedurable - whether the queue is durableExceptionpublic void createQueue(String address, String name) throws Exception
HornetQServerControlHornetQQueueExistsException) exception if the queue already exits.createQueue in interface HornetQServerControladdress - address to bind the queue toname - name of the queueExceptionpublic void createQueue(String address, String name, boolean durable) throws Exception
HornetQServerControlHornetQQueueExistsException) exception if the queue already exits.createQueue in interface HornetQServerControladdress - address to bind the queue toname - name of the queuedurable - whether the queue is durableExceptionpublic void createQueue(String address, String name, String filterStr, boolean durable) throws Exception
HornetQServerControlHornetQQueueExistsException) exception if the queue already exits.createQueue in interface HornetQServerControladdress - address to bind the queue toname - name of the queuefilterStr - of the queuedurable - whether the queue is durableExceptionpublic String[] getQueueNames()
HornetQServerControlgetQueueNames in interface HornetQServerControlpublic String[] getAddressNames()
HornetQServerControlgetAddressNames in interface HornetQServerControlpublic void destroyQueue(String name) throws Exception
HornetQServerControldestroyQueue in interface HornetQServerControlExceptionpublic int getConnectionCount()
HornetQServerControlgetConnectionCount in interface HornetQServerControlpublic void enableMessageCounters()
HornetQServerControlenableMessageCounters in interface HornetQServerControlpublic void disableMessageCounters()
HornetQServerControldisableMessageCounters in interface HornetQServerControlpublic void resetAllMessageCounters()
HornetQServerControlresetAllMessageCounters in interface HornetQServerControlpublic void resetAllMessageCounterHistories()
HornetQServerControlresetAllMessageCounterHistories in interface HornetQServerControlpublic boolean isMessageCounterEnabled()
HornetQServerControlisMessageCounterEnabled in interface HornetQServerControlpublic long getMessageCounterSamplePeriod()
HornetQServerControlgetMessageCounterSamplePeriod in interface HornetQServerControlpublic void setMessageCounterSamplePeriod(long newPeriod)
HornetQServerControlsetMessageCounterSamplePeriod in interface HornetQServerControlnewPeriod - value must be greater than 1000mspublic int getMessageCounterMaxDayCount()
HornetQServerControlgetMessageCounterMaxDayCount in interface HornetQServerControlpublic void setMessageCounterMaxDayCount(int count)
HornetQServerControlsetMessageCounterMaxDayCount in interface HornetQServerControlcount - value must be greater than 0public String[] listPreparedTransactions()
HornetQServerControllistPreparedTransactions in interface HornetQServerControlHornetQServerControl.commitPreparedTransaction(String),
HornetQServerControl.rollbackPreparedTransaction(String)public String listPreparedTransactionDetailsAsJSON() throws Exception
HornetQServerControllistPreparedTransactionDetailsAsJSON in interface HornetQServerControlExceptionpublic String listPreparedTransactionDetailsAsHTML() throws Exception
HornetQServerControllistPreparedTransactionDetailsAsHTML in interface HornetQServerControlExceptionpublic String[] listHeuristicCommittedTransactions()
HornetQServerControllistHeuristicCommittedTransactions in interface HornetQServerControlpublic String[] listHeuristicRolledBackTransactions()
HornetQServerControllistHeuristicRolledBackTransactions in interface HornetQServerControlpublic boolean commitPreparedTransaction(String transactionAsBase64) throws Exception
HornetQServerControlcommitPreparedTransaction in interface HornetQServerControltransactionAsBase64 - base 64 representation of a prepare transactiontrue if the transaction was successfully committed, false elseExceptionHornetQServerControl.listPreparedTransactions()public boolean rollbackPreparedTransaction(String transactionAsBase64) throws Exception
HornetQServerControlrollbackPreparedTransaction in interface HornetQServerControltransactionAsBase64 - base 64 representation of a prepare transactiontrue if the transaction was successfully rolled back, false elseExceptionHornetQServerControl.listPreparedTransactions()public String[] listRemoteAddresses()
HornetQServerControllistRemoteAddresses in interface HornetQServerControlpublic String[] listRemoteAddresses(String ipAddress)
HornetQServerControllistRemoteAddresses in interface HornetQServerControlpublic boolean closeConnectionsForAddress(String ipAddress)
HornetQServerControlcloseConnectionsForAddress in interface HornetQServerControlpublic boolean closeConsumerConnectionsForAddress(String address)
HornetQServerControlcloseConsumerConnectionsForAddress in interface HornetQServerControlpublic boolean closeConnectionsForUser(String userName)
HornetQServerControlcloseConnectionsForUser in interface HornetQServerControlpublic String[] listConnectionIDs()
HornetQServerControllistConnectionIDs in interface HornetQServerControlpublic String[] listSessions(String connectionID)
HornetQServerControllistSessions in interface HornetQServerControlpublic String listProducersInfoAsJSON() throws Exception
listProducersInfoAsJSON in interface HornetQServerControlExceptionpublic Object[] getConnectors() throws Exception
HornetQServerControlgetConnectors in interface HornetQServerControlExceptionpublic String getConnectorsAsJSON() throws Exception
HornetQServerControlgetConnectorsAsJSON in interface HornetQServerControlExceptionpublic void addSecuritySettings(String addressMatch, String sendRoles, String consumeRoles, String createDurableQueueRoles, String deleteDurableQueueRoles, String createNonDurableQueueRoles, String deleteNonDurableQueueRoles, String manageRoles) throws Exception
addSecuritySettings in interface HornetQServerControlExceptionpublic void removeSecuritySettings(String addressMatch) throws Exception
removeSecuritySettings in interface HornetQServerControlExceptionpublic Object[] getRoles(String addressMatch) throws Exception
getRoles in interface HornetQServerControlExceptionpublic String getRolesAsJSON(String addressMatch) throws Exception
getRolesAsJSON in interface HornetQServerControlExceptionpublic String getAddressSettingsAsJSON(String address) throws Exception
HornetQServerControlgetAddressSettingsAsJSON in interface HornetQServerControlExceptionpublic void addAddressSettings(String address, String DLA, String expiryAddress, long expiryDelay, boolean lastValueQueue, int deliveryAttempts, long maxSizeBytes, int pageSizeBytes, int pageMaxCacheSize, long redeliveryDelay, double redeliveryMultiplier, long maxRedeliveryDelay, long redistributionDelay, boolean sendToDLAOnNoRoute, String addressFullMessagePolicy, long slowConsumerThreshold, long slowConsumerCheckPeriod, String slowConsumerPolicy) throws Exception
HornetQServerControladdAddressSettings in interface HornetQServerControlExceptionpublic void removeAddressSettings(String addressMatch) throws Exception
removeAddressSettings in interface HornetQServerControlExceptionpublic void sendQueueInfoToQueue(String queueName, String address) throws Exception
HornetQServerControlsendQueueInfoToQueue in interface HornetQServerControlExceptionpublic String[] getDivertNames()
getDivertNames in interface HornetQServerControlpublic void createDivert(String name, String routingName, String address, String forwardingAddress, boolean exclusive, String filterString, String transformerClassName) throws Exception
createDivert in interface HornetQServerControlExceptionpublic void destroyDivert(String name) throws Exception
destroyDivert in interface HornetQServerControlExceptionpublic String[] getBridgeNames()
getBridgeNames in interface HornetQServerControlpublic void createBridge(String name, String queueName, String forwardingAddress, String filterString, String transformerClassName, long retryInterval, double retryIntervalMultiplier, int initialConnectAttempts, int reconnectAttempts, boolean useDuplicateDetection, int confirmationWindowSize, long clientFailureCheckPeriod, String connectorNames, boolean useDiscoveryGroup, boolean ha, String user, String password) throws Exception
createBridge in interface HornetQServerControlExceptionpublic void destroyBridge(String name) throws Exception
destroyBridge in interface HornetQServerControlExceptionpublic void forceFailover()
throws Exception
forceFailover in interface HornetQServerControlExceptionpublic void removeNotificationListener(NotificationListener listener, NotificationFilter filter, Object handback) throws ListenerNotFoundException
removeNotificationListener in interface NotificationEmitterListenerNotFoundExceptionpublic void removeNotificationListener(NotificationListener listener) throws ListenerNotFoundException
removeNotificationListener in interface NotificationBroadcasterListenerNotFoundExceptionpublic void addNotificationListener(NotificationListener listener, NotificationFilter filter, Object handback) throws IllegalArgumentException
addNotificationListener in interface NotificationBroadcasterIllegalArgumentExceptionpublic MBeanNotificationInfo[] getNotificationInfo()
getNotificationInfo in interface NotificationBroadcasterpublic long getConnectionTTLOverride()
HornetQServerControlgetConnectionTTLOverride in interface HornetQServerControlpublic int getIDCacheSize()
HornetQServerControlgetIDCacheSize in interface HornetQServerControlpublic String getLargeMessagesDirectory()
HornetQServerControlgetLargeMessagesDirectory in interface HornetQServerControlpublic String getManagementAddress()
HornetQServerControlgetManagementAddress in interface HornetQServerControlpublic String getManagementNotificationAddress()
HornetQServerControlgetManagementNotificationAddress in interface HornetQServerControlpublic long getMessageExpiryScanPeriod()
HornetQServerControlgetMessageExpiryScanPeriod in interface HornetQServerControlpublic long getMessageExpiryThreadPriority()
HornetQServerControlgetMessageExpiryThreadPriority in interface HornetQServerControlpublic long getTransactionTimeout()
HornetQServerControlgetTransactionTimeout in interface HornetQServerControlpublic long getTransactionTimeoutScanPeriod()
HornetQServerControlgetTransactionTimeoutScanPeriod in interface HornetQServerControlpublic boolean isPersistDeliveryCountBeforeDelivery()
HornetQServerControlisPersistDeliveryCountBeforeDelivery in interface HornetQServerControlpublic boolean isPersistIDCache()
HornetQServerControlisPersistIDCache in interface HornetQServerControlpublic boolean isWildcardRoutingEnabled()
HornetQServerControlisWildcardRoutingEnabled in interface HornetQServerControlprotected MBeanOperationInfo[] fillMBeanOperationInfo()
fillMBeanOperationInfo in class AbstractControlpublic void onNotification(Notification notification)
onNotification in interface NotificationListenerCopyright © 2016 JBoss, a division of Red Hat. All rights reserved.