Interface ClientSession.AddressQuery
-
- Enclosing interface:
- ClientSession
public static interface ClientSession.AddressQueryInformation returned by a binding query- See Also:
ClientSession.addressQuery(SimpleString)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.IntegergetDefaultConsumersBeforeDispatch()java.lang.LonggetDefaultDelayBeforeDispatch()org.apache.activemq.artemis.api.core.SimpleStringgetDefaultLastValueKey()intgetDefaultMaxConsumers()java.util.List<org.apache.activemq.artemis.api.core.SimpleString>getQueueNames()Returns the names of the queues bound to the binding.booleanisAutoCreateAddresses()Returnstrueif auto-address-creation for this address is enabled,falseelse.booleanisAutoCreateQueues()Returnstrueif auto-queue-creation for this address is enabled,falseelse.java.lang.BooleanisDefaultExclusive()java.lang.BooleanisDefaultLastValueQueue()java.lang.BooleanisDefaultNonDestructive()booleanisDefaultPurgeOnNoConsumers()booleanisExists()Returnstrueif the binding exists,falseelse.
-
-
-
Method Detail
-
isExists
boolean isExists()
Returnstrueif the binding exists,falseelse.
-
getQueueNames
java.util.List<org.apache.activemq.artemis.api.core.SimpleString> getQueueNames()
Returns the names of the queues bound to the binding.
-
isAutoCreateQueues
boolean isAutoCreateQueues()
Returnstrueif auto-queue-creation for this address is enabled,falseelse.
-
isAutoCreateAddresses
boolean isAutoCreateAddresses()
Returnstrueif auto-address-creation for this address is enabled,falseelse.
-
isDefaultPurgeOnNoConsumers
boolean isDefaultPurgeOnNoConsumers()
-
getDefaultMaxConsumers
int getDefaultMaxConsumers()
-
isDefaultLastValueQueue
java.lang.Boolean isDefaultLastValueQueue()
-
isDefaultExclusive
java.lang.Boolean isDefaultExclusive()
-
getDefaultLastValueKey
org.apache.activemq.artemis.api.core.SimpleString getDefaultLastValueKey()
-
isDefaultNonDestructive
java.lang.Boolean isDefaultNonDestructive()
-
getDefaultConsumersBeforeDispatch
java.lang.Integer getDefaultConsumersBeforeDispatch()
-
getDefaultDelayBeforeDispatch
java.lang.Long getDefaultDelayBeforeDispatch()
-
-