public class QueueControlImpl extends AbstractControl implements QueueControl
storageManager| Constructor and Description |
|---|
QueueControlImpl(Queue queue,
String address,
PostOffice postOffice,
StorageManager storageManager,
HierarchicalRepository<AddressSettings> addressSettingsRepository) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
changeMessagePriority(long messageID,
int newPriority)
Changes the message's priority corresponding to the specified message ID to the specified priority.
|
int |
changeMessagesPriority(String filterStr,
int newPriority)
Changes the priority for all the message corresponding to the specified filter to the specified priority.
|
long |
countMessages(String filterStr)
Counts the number of messages in this queue matching the specified filter.
|
boolean |
expireMessage(long messageID)
Expires the message corresponding to the specified message ID.
|
int |
expireMessages(String filterStr)
Expires all the message corresponding to the specified filter.
|
protected MBeanOperationInfo[] |
fillMBeanOperationInfo() |
String |
getAddress()
Returns the address this queue is bound to.
|
int |
getConsumerCount()
Returns the number of consumers consuming messages from this queue.
|
String |
getDeadLetterAddress()
Returns the dead-letter address associated to this queue.
|
int |
getDeliveringCount()
Returns the number of messages that this queue is currently delivering to its consumers.
|
String |
getExpiryAddress()
Returns the expiry address associated to this queue.
|
String |
getFilter()
Returns the filter associated to this queue.
|
long |
getID()
Returns this queue ID.
|
long |
getMessageCount()
Returns the number of messages currently in this queue.
|
long |
getMessagesAdded()
Returns the number of messages added to this queue since it was created.
|
String |
getName()
Returns the name of this queue.
|
long |
getScheduledCount()
Returns the number of scheduled messages in this queue.
|
boolean |
isDurable()
Returns whether this queue is durable.
|
boolean |
isPaused()
Returns whether the queue is paused.
|
boolean |
isTemporary()
Returns whether this queue is temporary.
|
String |
listConsumersAsJSON() |
String |
listMessageCounter()
Lists the message counter for this queue.
|
String |
listMessageCounterAsHTML()
Lists the message counter for this queue as a HTML table.
|
String |
listMessageCounterHistory()
Lists the message counter history for this queue.
|
String |
listMessageCounterHistoryAsHTML()
Lists the message counter history for this queue as a HTML table.
|
Map<String,Object>[] |
listMessages(String filterStr)
Lists all the messages in this queue matching the specified filter.
|
String |
listMessagesAsJSON(String filter)
Lists all the messages in this queue matching the specified filter using JSON serialization.
|
Map<String,Object>[] |
listScheduledMessages()
Lists all the messages scheduled for delivery for this queue.
|
String |
listScheduledMessagesAsJSON()
Lists all the messages scheduled for delivery for this queue using JSON serialization.
|
boolean |
moveMessage(long messageID,
String otherQueueName)
Moves the message corresponding to the specified message ID to the specified other queue.
|
boolean |
moveMessage(long messageID,
String otherQueueName,
boolean rejectDuplicates)
Moves the message corresponding to the specified message ID to the specified other queue.
|
int |
moveMessages(String filterStr,
String otherQueueName)
Moves all the message corresponding to the specified filter to the specified other queue.
|
int |
moveMessages(String filterStr,
String otherQueueName,
boolean rejectDuplicates)
Moves all the message corresponding to the specified filter to the specified other queue.
|
void |
pause()
Pauses the queue.
|
boolean |
removeMessage(long messageID)
Removes the message corresponding to the specified message ID.
|
int |
removeMessages(String filterStr)
Removes all the message corresponding to the specified filter.
|
void |
resetMessageCounter()
Resets the message counter for this queue.
|
void |
resume()
Resumes the queue.
|
int |
sendMessagesToDeadLetterAddress(String filterStr)
Sends all the message corresponding to the specified filter to this queue's dead letter address.
|
boolean |
sendMessageToDeadLetterAddress(long messageID)
Sends the message corresponding to the specified message ID to this queue's dead letter address.
|
void |
setDeadLetterAddress(String deadLetterAddress)
Sets the dead-letter address associated to this queue to the specified deadLetterAddress.
|
void |
setExpiryAddress(String expiryAddress)
Sets the expiry address associated to this queue to the specified expiryAddress.
|
void |
setMessageCounter(MessageCounter counter) |
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 QueueControlImpl(Queue queue, String address, PostOffice postOffice, StorageManager storageManager, HierarchicalRepository<AddressSettings> addressSettingsRepository) throws Exception
Exceptionpublic void setMessageCounter(MessageCounter counter)
public String getName()
QueueControlgetName in interface QueueControlpublic String getAddress()
QueueControlgetAddress in interface QueueControlpublic String getFilter()
QueueControlgetFilter in interface QueueControlpublic boolean isDurable()
QueueControlisDurable in interface QueueControlpublic boolean isTemporary()
QueueControlisTemporary in interface QueueControlpublic long getMessageCount()
QueueControlgetMessageCount in interface QueueControlpublic int getConsumerCount()
QueueControlgetConsumerCount in interface QueueControlpublic int getDeliveringCount()
QueueControlgetDeliveringCount in interface QueueControlpublic long getMessagesAdded()
QueueControlgetMessagesAdded in interface QueueControlpublic long getID()
QueueControlgetID in interface QueueControlpublic long getScheduledCount()
QueueControlgetScheduledCount in interface QueueControlpublic String getDeadLetterAddress()
QueueControlgetDeadLetterAddress in interface QueueControlpublic void setDeadLetterAddress(String deadLetterAddress) throws Exception
QueueControlsetDeadLetterAddress in interface QueueControlExceptionpublic String getExpiryAddress()
QueueControlgetExpiryAddress in interface QueueControlpublic void setExpiryAddress(String expiryAddress) throws Exception
QueueControlsetExpiryAddress in interface QueueControlExceptionpublic Map<String,Object>[] listScheduledMessages() throws Exception
QueueControllistScheduledMessages in interface QueueControlExceptionpublic String listScheduledMessagesAsJSON() throws Exception
QueueControllistScheduledMessagesAsJSON in interface QueueControlExceptionpublic Map<String,Object>[] listMessages(String filterStr) throws Exception
QueueControlnull or an empty filter will list all messages from this queue.listMessages in interface QueueControlExceptionpublic String listMessagesAsJSON(String filter) throws Exception
QueueControlnull or an empty filter will list all messages from this queue.listMessagesAsJSON in interface QueueControlExceptionpublic long countMessages(String filterStr) throws Exception
QueueControlnull or an empty filter will count all messages from this queue.countMessages in interface QueueControlExceptionpublic boolean removeMessage(long messageID)
throws Exception
QueueControlremoveMessage in interface QueueControltrue if the message was removed, false elseExceptionpublic int removeMessages(String filterStr) throws Exception
QueueControlnull or an empty filter will remove all messages from this queue.removeMessages in interface QueueControlExceptionpublic boolean expireMessage(long messageID)
throws Exception
QueueControlexpireMessage in interface QueueControltrue if the message was expired, false elseExceptionpublic int expireMessages(String filterStr) throws Exception
QueueControlnull or an empty filter will expire all messages from this queue.expireMessages in interface QueueControlExceptionpublic boolean moveMessage(long messageID,
String otherQueueName)
throws Exception
QueueControlmoveMessage in interface QueueControltrue if the message was moved, false elseExceptionpublic boolean moveMessage(long messageID,
String otherQueueName,
boolean rejectDuplicates)
throws Exception
QueueControlmoveMessage in interface QueueControltrue if the message was moved, false elseExceptionpublic int moveMessages(String filterStr, String otherQueueName) throws Exception
QueueControlnull or an empty filter will move all messages from this queue.moveMessages in interface QueueControlExceptionpublic int moveMessages(String filterStr, String otherQueueName, boolean rejectDuplicates) throws Exception
QueueControlnull or an empty filter will move all messages from this queue.moveMessages in interface QueueControlExceptionpublic int sendMessagesToDeadLetterAddress(String filterStr) throws Exception
QueueControlnull or an empty filter will send all messages from this queue.sendMessagesToDeadLetterAddress in interface QueueControlExceptionpublic boolean sendMessageToDeadLetterAddress(long messageID)
throws Exception
QueueControlsendMessageToDeadLetterAddress in interface QueueControltrue if the message was sent to the dead letter address, false elseExceptionpublic int changeMessagesPriority(String filterStr, int newPriority) throws Exception
QueueControlnull or an empty filter will change all messages from this queue.changeMessagesPriority in interface QueueControlExceptionpublic boolean changeMessagePriority(long messageID,
int newPriority)
throws Exception
QueueControlchangeMessagePriority in interface QueueControlnewPriority - between 0 and 9 inclusive.true if the message priority was changedExceptionpublic String listMessageCounter()
QueueControllistMessageCounter in interface QueueControlpublic void resetMessageCounter()
QueueControlresetMessageCounter in interface QueueControlpublic String listMessageCounterAsHTML()
QueueControllistMessageCounterAsHTML in interface QueueControlpublic String listMessageCounterHistory() throws Exception
QueueControllistMessageCounterHistory in interface QueueControlExceptionpublic String listMessageCounterHistoryAsHTML()
QueueControllistMessageCounterHistoryAsHTML in interface QueueControlpublic void pause()
QueueControlpause in interface QueueControlpublic void resume()
QueueControlresume in interface QueueControlpublic boolean isPaused()
throws Exception
QueueControlisPaused in interface QueueControlExceptionpublic String listConsumersAsJSON() throws Exception
listConsumersAsJSON in interface QueueControlExceptionprotected MBeanOperationInfo[] fillMBeanOperationInfo()
fillMBeanOperationInfo in class AbstractControlCopyright © 2012 JBoss by Red Hat. All Rights Reserved.