Interface ClientSession.QueueQuery
-
- Enclosing interface:
- ClientSession
public static interface ClientSession.QueueQueryInformation returned by a queue query- See Also:
ClientSession.queueQuery(SimpleString)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SimpleStringgetAddress()Returns the address that the queue is bound to.LonggetAutoDeleteDelay()LonggetAutoDeleteMessageCount()intgetConsumerCount()Returns the number of consumers attached to the queue.IntegergetConsumersBeforeDispatch()IntegergetDefaultConsumerWindowSize()LonggetDelayBeforeDispatch()SimpleStringgetFilterString()Returns the queue's filter string (ornullif the queue has no filter).IntegergetGroupBuckets()SimpleStringgetGroupFirstKey()SimpleStringgetLastValueKey()intgetMaxConsumers()longgetMessageCount()Returns the number of messages in the queue.SimpleStringgetName()Return the name of the queueLonggetRingSize()RoutingTypegetRoutingType()booleanisAutoCreated()booleanisAutoCreateQueues()Returnstrueif auto-creation for this queue is enabled and if the queue queried is a JMS queue,falseelse.BooleanisAutoDelete()BooleanisConfigurationManaged()booleanisDurable()Returnstrueif the queue is durable,falseelse.BooleanisEnabled()BooleanisExclusive()booleanisExists()Returnstrueif the queue exists,falseelse.BooleanisGroupRebalance()BooleanisGroupRebalancePauseDispatch()BooleanisLastValue()BooleanisNonDestructive()booleanisPurgeOnNoConsumers()booleanisTemporary()Returntrueif the queue is temporary,falseelse.
-
-
-
Method Detail
-
isExists
boolean isExists()
Returnstrueif the queue exists,falseelse.
-
isTemporary
boolean isTemporary()
Returntrueif the queue is temporary,falseelse.
-
isDurable
boolean isDurable()
Returnstrueif the queue is durable,falseelse.
-
isAutoCreateQueues
boolean isAutoCreateQueues()
Returnstrueif auto-creation for this queue is enabled and if the queue queried is a JMS queue,falseelse.
-
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 (ornullif 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()
-
-