Operation |
Return Type |
Description |
Parameters |
resume |
void |
Resume the queue. |
|
removeMessage |
boolean |
Remove the message corresponding to the given messageID |
|
removeMessages |
int |
Remove the messages corresponding to the given filter (and returns the number of removed messages) |
|
pause |
void |
Pause the queue. |
|
listConsumersAsJSON |
java.lang.String |
List all the existent consumers on the Queue |
|
addJNDI |
void |
Adds the queue to another JNDI binding |
|
sendMessageToDeadLetterAddress |
boolean |
Send the message corresponding to the given messageID to this queue's Dead Letter Address |
|
sendMessagesToDeadLetterAddress |
int |
Send the messages corresponding to the given filter to this queue's Dead Letter Address |
|
listMessages |
[Ljava.util.Map; |
List all messages in the queue which matches the filter |
|
listMessagesAsJSON |
java.lang.String |
List all messages in the queue which matches the filter and return them using JSON |
|
countMessages |
long |
Returns the number of the messages in the queue matching the given filter |
|
expireMessage |
boolean |
Expire the message corresponding to the given messageID |
|
expireMessages |
int |
Expire the messages corresponding to the given filter (and returns the number of expired messages) |
|
moveMessage |
boolean |
Move the message corresponding to the given messageID to another queue |
|
moveMessage |
boolean |
Move the message corresponding to the given messageID to another queue, ignoring duplicates (rejectDuplicates=false on this case) |
|
moveMessages |
int |
Move the messages corresponding to the given filter (and returns the number of moved messages) |
|
moveMessages |
int |
Move the messages corresponding to the given filter (and returns the number of moved messages). rejectDuplicates=false on this case |
|
changeMessagesPriority |
int |
Change the priority of the messages corresponding to the given filter |
|
changeMessagePriority |
boolean |
Change the priority of the message corresponding to the given messageID |
|
listMessageCounter |
java.lang.String |
List the message counters |
|
resetMessageCounter |
void |
Reset the message counters |
|
listMessageCounterAsHTML |
java.lang.String |
List the message counters as HTML |
|
listMessageCounterHistory |
java.lang.String |
List the message counters history |
|
listMessageCounterHistoryAsHTML |
java.lang.String |
List the message counters history as HTML |
|