public interface JMSQueueControl extends DestinationControl
Modifier and Type | Method and Description |
---|---|
void |
addBinding(String binding)
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.
|
void |
flushExecutor()
it will flush one cycle on internal executors, so you would be sure that any pending tasks are done before you call
any other measure.
|
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.
|
Long |
getFirstMessageAge()
Returns the age of the first message in milliseconds.
|
String |
getFirstMessageAsJSON()
Returns the first message on the queue as JSON
|
Long |
getFirstMessageTimestamp()
Returns the timestamp of the first message in milliseconds.
|
String[] |
getRegistryBindings()
Returns the Registry 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() |
Map<String,Map<String,Object>[]> |
listDeliveringMessages()
Lists all the messages being deliver per consumer.
|
String |
listDeliveringMessagesAsJSON()
Executes a conversion of
listDeliveringMessages() to JSON |
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.
|
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(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.
|
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.
|
getAddress, getDeliveringCount, getMessageCount, getMessagesAdded, getName, isTemporary
String getExpiryAddress()
String getDeadLetterAddress()
long getScheduledCount()
int getConsumerCount()
String getSelector()
String getFirstMessageAsJSON() throws Exception
Exception
Long getFirstMessageTimestamp() throws Exception
Exception
Long getFirstMessageAge() throws Exception
Exception
String[] getRegistryBindings()
void addBinding(String binding) throws Exception
Exception
Map<String,Object>[] listMessages(String filter) throws Exception
null
or an empty filter will list all messages from this queue.Exception
String listMessagesAsJSON(String filter) throws Exception
null
or an empty filter will list all messages from this queue.Exception
long countMessages(String filter) throws Exception
null
or an empty filter will count all messages from this queue.Exception
boolean removeMessage(String messageID) throws Exception
true
if the message was removed, false
elseException
int removeMessages(String filter) throws Exception
null
or an empty filter will remove all messages from this queue.removeMessages
in interface DestinationControl
Exception
int expireMessages(String filter) throws Exception
null
or an empty filter will expire all messages from this queue.Exception
boolean expireMessage(String messageID) throws Exception
true
if the message was expired, false
elseException
boolean sendMessageToDeadLetterAddress(String messageID) throws Exception
true
if the message was sent to the dead letter address, false
elseException
int sendMessagesToDeadLetterAddress(String filterStr) throws Exception
null
or an empty filter will send all messages from this queue.Exception
boolean changeMessagePriority(String messageID, int newPriority) throws Exception
newPriority
- between 0 and 9 inclusive.true
if the message priority was changedException
int changeMessagesPriority(String filter, int newPriority) throws Exception
null
or an empty filter will change all messages from this queue.Exception
boolean moveMessage(String messageID, String otherQueueName) throws Exception
true
if the message was moved, false
elseException
boolean moveMessage(String messageID, String otherQueueName, boolean rejectDuplicates) throws Exception
true
if the message was moved, false
elseException
int moveMessages(String filter, String otherQueueName) throws Exception
null
or an empty filter will move all messages from this queue.Exception
int moveMessages(String filter, String otherQueueName, boolean rejectDuplicates) throws Exception
null
or an empty filter will move all messages from this queue.Exception
String listMessageCounter() throws Exception
Exception
void resetMessageCounter() throws Exception
Exception
String listMessageCounterAsHTML() throws Exception
Exception
String listMessageCounterHistory() throws Exception
Exception
String listMessageCounterHistoryAsHTML() throws Exception
Exception
void pause() throws Exception
Exception
void resume() throws Exception
Exception
void flushExecutor()
Map<String,Object>[] listScheduledMessages() throws Exception
Exception
String listScheduledMessagesAsJSON() throws Exception
Exception
Map<String,Map<String,Object>[]> listDeliveringMessages() throws Exception
Map<String,Object>[]
same way is returned by listScheduledMessages()
Exception
String listDeliveringMessagesAsJSON() throws Exception
listDeliveringMessages()
to JSONException
Copyright © 2016 JBoss by Red Hat. All rights reserved.