public interface JMSQueueControl extends DestinationControl
| Modifier and Type | Method and Description |
|---|---|
void |
addJNDI(String jndi)
Add the JNDI binding to this destination
|
boolean |
changeMessagePriority(String messageID,
int newPriority)
Changes the message's priority corresponding to the specified message ID to the specified priority.
|
int |
changeMessagesPriority(String filter,
int newPriority)
Changes the priority for all the message corresponding to the specified filter to the specified priority.
|
long |
countMessages(String filter)
Counts the number of messages in this queue matching the specified filter.
|
boolean |
expireMessage(String messageID)
Expires the message corresponding to the specified message ID.
|
int |
expireMessages(String filter)
Expires all the message corresponding to the specified filter.
|
int |
getConsumerCount()
Returns the number of consumers consuming messages from this queue.
|
String |
getDeadLetterAddress()
Returns the dead-letter address associated to this queue.
|
String |
getExpiryAddress()
Returns the expiry address associated to this queue.
|
String[] |
getJNDIBindings()
Returns the JNDI bindings associated to this connection factory.
|
long |
getScheduledCount()
Returns the number of scheduled messages in this queue.
|
String |
getSelector()
returns the selector for the queue
|
boolean |
isPaused()
Returns whether the queue is paused.
|
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 filter)
Lists all the JMS messages in this queue matching the specified filter.
|
String |
listMessagesAsJSON(String filter)
Lists all the JMS messages in this queue matching the specified filter using JSON serialization.
|
boolean |
moveMessage(String messageID,
String otherQueueName)
Moves the message corresponding to the specified message ID to the specified other queue.
|
boolean |
moveMessage(String messageID,
String otherQueueName,
boolean rejectDuplicates)
Moves the message corresponding to the specified message ID to the specified other queue.
|
int |
moveMessages(String filter,
String otherQueueName)
Moves all the message corresponding to the specified filter to the specified other queue.
|
int |
moveMessages(String filter,
String otherQueueName,
boolean rejectDuplicates)
Moves all the message corresponding to the specified filter to the specified other queue.
|
void |
pause()
Pauses the queue.
|
void |
removeJNDI(String jndi) |
boolean |
removeMessage(String messageID)
Removes the message corresponding to the specified message ID.
|
int |
removeMessages(String filter)
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(String 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.
|
getAddress, getDeliveringCount, getMessageCount, getMessagesAdded, getName, isTemporaryString getExpiryAddress()
void setExpiryAddress(String expiryAddress) throws Exception
ExceptionString getDeadLetterAddress()
void setDeadLetterAddress(String deadLetterAddress) throws Exception
Exceptionlong getScheduledCount()
int getConsumerCount()
String getSelector()
String[] getJNDIBindings()
void addJNDI(String jndi) throws Exception
ExceptionMap<String,Object>[] listMessages(String filter) throws Exception
null or an empty filter will list all messages from this queue.ExceptionString listMessagesAsJSON(String filter) throws Exception
null or an empty filter will list all messages from this queue.Exceptionlong countMessages(String filter) throws Exception
null or an empty filter will count all messages from this queue.Exceptionboolean removeMessage(String messageID) throws Exception
true if the message was removed, false elseExceptionint removeMessages(String filter) throws Exception
null or an empty filter will remove all messages from this queue.removeMessages in interface DestinationControlExceptionint expireMessages(String filter) throws Exception
null or an empty filter will expire all messages from this queue.Exceptionboolean expireMessage(String messageID) throws Exception
true if the message was expired, false elseExceptionboolean sendMessageToDeadLetterAddress(String messageID) throws Exception
true if the message was sent to the dead letter address, false elseExceptionint sendMessagesToDeadLetterAddress(String filterStr) throws Exception
null or an empty filter will send all messages from this queue.Exceptionboolean changeMessagePriority(String messageID, int newPriority) throws Exception
newPriority - between 0 and 9 inclusive.true if the message priority was changedExceptionint changeMessagesPriority(String filter, int newPriority) throws Exception
null or an empty filter will change all messages from this queue.Exceptionboolean moveMessage(String messageID, String otherQueueName) throws Exception
true if the message was moved, false elseExceptionboolean moveMessage(String messageID, String otherQueueName, boolean rejectDuplicates) throws Exception
true if the message was moved, false elseExceptionint moveMessages(String filter, String otherQueueName) throws Exception
null or an empty filter will move all messages from this queue.Exceptionint moveMessages(String filter, String otherQueueName, boolean rejectDuplicates) throws Exception
null or an empty filter will move all messages from this queue.ExceptionString listMessageCounter() throws Exception
Exceptionvoid resetMessageCounter()
throws Exception
ExceptionString listMessageCounterAsHTML() throws Exception
ExceptionString listMessageCounterHistory() throws Exception
ExceptionString listMessageCounterHistoryAsHTML() throws Exception
Exceptionvoid pause()
throws Exception
Exceptionvoid resume()
throws Exception
ExceptionCopyright © 2012 JBoss by Red Hat. All Rights Reserved.