Interface ClientSession.QueueQuery
- Enclosing interface:
- ClientSession
public static interface ClientSession.QueueQuery
Information returned by a queue query
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionReturns the address that the queue is bound to.int
Returns the number of consumers attached to the queue.Returns the queue's filter string (ornull
if the queue has no filter).int
long
Returns the number of messages in the queue.getName()
Return the name of the queueboolean
boolean
Returnstrue
if auto-creation for this queue is enabled and if the queue queried is a JMS queue,false
else.boolean
Returnstrue
if the queue is durable,false
else.boolean
isExists()
Returnstrue
if the queue exists,false
else.boolean
boolean
Returntrue
if the queue is temporary,false
else.
-
Method Details
-
isExists
boolean isExists()Returnstrue
if the queue exists,false
else. -
isTemporary
boolean isTemporary()Returntrue
if the queue is temporary,false
else. -
isDurable
boolean isDurable()Returnstrue
if the queue is durable,false
else. -
isAutoCreateQueues
boolean isAutoCreateQueues()Returnstrue
if auto-creation for this queue is enabled and if the queue queried is a JMS queue,false
else. -
getConsumerCount
int getConsumerCount()Returns the number of consumers attached to the queue. -
getMessageCount
long getMessageCount()Returns the number of messages in the queue. -
getFilterString
SimpleString getFilterString()Returns the queue's filter string (ornull
if the queue has no filter). -
getAddress
SimpleString getAddress()Returns the address that the queue is bound to. -
getName
SimpleString getName()Return the name of the queue- Returns:
-
getRoutingType
RoutingType getRoutingType() -
getMaxConsumers
int getMaxConsumers() -
isPurgeOnNoConsumers
boolean isPurgeOnNoConsumers() -
isAutoCreated
boolean isAutoCreated() -
isExclusive
Boolean isExclusive() -
isLastValue
Boolean isLastValue() -
getLastValueKey
SimpleString getLastValueKey() -
isNonDestructive
Boolean isNonDestructive() -
getConsumersBeforeDispatch
Integer getConsumersBeforeDispatch() -
getDelayBeforeDispatch
Long getDelayBeforeDispatch() -
getDefaultConsumerWindowSize
Integer getDefaultConsumerWindowSize() -
isGroupRebalance
Boolean isGroupRebalance() -
isGroupRebalancePauseDispatch
Boolean isGroupRebalancePauseDispatch() -
getGroupBuckets
Integer getGroupBuckets() -
getGroupFirstKey
SimpleString getGroupFirstKey() -
isAutoDelete
Boolean isAutoDelete() -
getAutoDeleteDelay
Long getAutoDeleteDelay() -
getAutoDeleteMessageCount
Long getAutoDeleteMessageCount() -
getRingSize
Long getRingSize() -
isEnabled
Boolean isEnabled() -
isConfigurationManaged
Boolean isConfigurationManaged()
-