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 IntegergetDefaultConsumersBeforeDispatch()LonggetDefaultDelayBeforeDispatch()SimpleStringgetDefaultLastValueKey()intgetDefaultMaxConsumers()List<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.BooleanisDefaultExclusive()BooleanisDefaultLastValueQueue()BooleanisDefaultNonDestructive()booleanisDefaultPurgeOnNoConsumers()booleanisExists()Returnstrueif the binding exists,falseelse.booleanisSupportsAnycast()booleanisSupportsMulticast()
-
-
-
Method Detail
-
isExists
boolean isExists()
Returnstrueif the binding exists,falseelse.
-
getQueueNames
List<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
Boolean isDefaultLastValueQueue()
-
isDefaultExclusive
Boolean isDefaultExclusive()
-
getDefaultLastValueKey
SimpleString getDefaultLastValueKey()
-
isDefaultNonDestructive
Boolean isDefaultNonDestructive()
-
getDefaultConsumersBeforeDispatch
Integer getDefaultConsumersBeforeDispatch()
-
getDefaultDelayBeforeDispatch
Long getDefaultDelayBeforeDispatch()
-
isSupportsMulticast
boolean isSupportsMulticast()
-
isSupportsAnycast
boolean isSupportsAnycast()
-
-