Interface AddressControl
public interface AddressControl
An AddressControl is used to manage an address.
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionbooleanblock()Blocks message production to this address by limiting creditbooleanReturns the managed address.intReturns the % of memory limit that is currently in uselongReturns the number of estimated bytes being used by all the queue(s) bound to this address; used to control paging and blocking.String[]Returns the names of both the local and remote queue(s) bound to this address.String[]Returns the names of all bindings (both queues and diverts) bound to this addresslonglonglongReturns the number of bytes used by each page for this address.longDeprecated.longReturns the number of pages used by this address.String[]Returns the names of the local queue(s) bound to this address.String[]Returns the names of the remote queue(s) bound to this address.Object[]getRoles()Returns the roles (name and permissions) associated with this address.Returns the roles (name and permissions) associated with this address using JSON serialization.longReturns the number of messages routed to one or more bindingsString[]longReturns the number of messages not routed to any bindingsbooleanReturns whether this address was created automatically in response to client action.booleanReturns whether this address was created for the broker's internal use.booleanisPaging()Returns whether this address is paging.booleanisPaused()booleanbooleanReturns whether this address is temporary.voidpause()Pauses all the queues bound to this address.voidpause(boolean persist) Pauses all the queues bound to this address.longpurge()Purge all the queues bound of this address.voidvoidvoidresume()Resume all the queues bound of this address.voidsendMessage(Map<String, String> headers, int type, String body, boolean durable, String user, String password) sendMessage(Map<String, String> headers, int type, String body, boolean durable, String user, String password, boolean createMessageId) voidunblock()
-
Field Details
-
ROUTED_MESSAGE_COUNT_DESCRIPTION
- See Also:
-
UNROUTED_MESSAGE_COUNT_DESCRIPTION
- See Also:
-
ADDRESS_SIZE_DESCRIPTION
- See Also:
-
NUMBER_OF_PAGES_DESCRIPTION
- See Also:
-
-
Method Details
-
getAddress
String getAddress()Returns the managed address. -
getRoutingTypes
String[] getRoutingTypes() -
getRoutingTypesAsJSON
- Throws:
Exception
-
getRoles
Returns the roles (name and permissions) associated with this address.- Throws:
Exception
-
getRolesAsJSON
Returns the roles (name and permissions) associated with this address using JSON serialization.
Java objects can be recreated from JSON serialization usingRoleInfo.from(String).- Throws:
Exception
-
getAddressSize
long getAddressSize()Returns the number of estimated bytes being used by all the queue(s) bound to this address; used to control paging and blocking. -
schedulePageCleanup
- Throws:
Exception
-
getNumberOfMessages
Deprecated.Returns the sum of messages on queue(s), including messages in delivery. -
getRemoteQueueNames
String[] getRemoteQueueNames()Returns the names of the remote queue(s) bound to this address. -
getQueueNames
String[] getQueueNames()Returns the names of the local queue(s) bound to this address. -
getAllQueueNames
String[] getAllQueueNames()Returns the names of both the local and remote queue(s) bound to this address. -
getNumberOfPages
long getNumberOfPages()Returns the number of pages used by this address. -
isPaging
Returns whether this address is paging.- Throws:
Exception
-
getAddressLimitPercent
Returns the % of memory limit that is currently in use- Throws:
Exception
-
block
Blocks message production to this address by limiting credit- Returns:
- true if production is blocked
- Throws:
Exception
-
unblock
- Throws:
Exception
-
getNumberOfBytesPerPage
Returns the number of bytes used by each page for this address.- Throws:
Exception
-
getBindingNames
Returns the names of all bindings (both queues and diverts) bound to this address- Throws:
Exception
-
getMessageCount
long getMessageCount() -
getRoutedMessageCount
long getRoutedMessageCount()Returns the number of messages routed to one or more bindings -
getUnRoutedMessageCount
long getUnRoutedMessageCount()Returns the number of messages not routed to any bindings -
sendMessage
String sendMessage(Map<String, String> headers, int type, String body, boolean durable, String user, String password) throws Exception- Parameters:
headers- the message headers and properties to set. Can only container Strings maped to primitive types.body- the text to senddurable-user-password-- Returns:
- Throws:
Exception
-
sendMessage
String sendMessage(Map<String, String> headers, int type, String body, boolean durable, String user, String password, boolean createMessageId) throws Exception- Parameters:
headers- the message headers and properties to set. Can only container Strings maped to primitive types.body- the text to senddurable-user-password-createMessageId- whether or not to auto generate a Message ID- Returns:
- Throws:
Exception
-
pause
Pauses all the queues bound to this address. Messages are no longer delivered to all its bounded queues. Newly added queue will be paused too until resume is called.- Throws:
Exception
-
pause
Pauses all the queues bound to this address. Messages are no longer delivered to all its bounded queues. Newly added queue will be paused too until resume is called.- Parameters:
persist- if true, the pause state will be persisted.- Throws:
Exception
-
resume
Resume all the queues bound of this address. Messages are delivered again to all its bounded queues.- Throws:
Exception
-
isPaused
boolean isPaused() -
isRetroactiveResource
boolean isRetroactiveResource() -
getCurrentDuplicateIdCacheSize
long getCurrentDuplicateIdCacheSize() -
clearDuplicateIdCache
- Throws:
Exception
-
isAutoCreated
boolean isAutoCreated()Returns whether this address was created automatically in response to client action. -
isInternal
boolean isInternal()Returns whether this address was created for the broker's internal use. -
isTemporary
boolean isTemporary()Returns whether this address is temporary. -
purge
Purge all the queues bound of this address. Returns the total number of messages purged.- Throws:
Exception
-
replay
- Throws:
Exception
-
replay
- Throws:
Exception
-