Interface AddressControl
-
public interface AddressControlAn AddressControl is used to manage an address.
-
-
Field Summary
Fields Modifier and Type Field Description static StringADDRESS_SIZE_DESCRIPTIONstatic StringNUMBER_OF_PAGES_DESCRIPTIONstatic StringROUTED_MESSAGE_COUNT_DESCRIPTIONstatic StringUNROUTED_MESSAGE_COUNT_DESCRIPTION
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleanblock()Blocks message production to this address by limiting creditbooleanclearDuplicateIdCache()StringgetAddress()Returns the managed address.intgetAddressLimitPercent()Returns the % of memory limit that is currently in uselonggetAddressSize()Returns the number of estimated bytes being used by all the queue(s) bound to this address; used to control paging and blocking.String[]getAllQueueNames()Returns the names of both the local and remote queue(s) bound to this address.String[]getBindingNames()Returns the names of all bindings (both queues and diverts) bound to this addresslonggetCurrentDuplicateIdCacheSize()longgetMessageCount()longgetNumberOfBytesPerPage()Returns the number of bytes used by each page for this address.longgetNumberOfMessages()Deprecated.longgetNumberOfPages()Returns the number of pages used by this address.String[]getQueueNames()Returns the names of the local queue(s) bound to this address.String[]getRemoteQueueNames()Returns the names of the remote queue(s) bound to this address.Object[]getRoles()Returns the roles (name and permissions) associated with this address.StringgetRolesAsJSON()Returns the roles (name and permissions) associated with this address using JSON serialization.longgetRoutedMessageCount()Returns the number of messages routed to one or more bindingsString[]getRoutingTypes()StringgetRoutingTypesAsJSON()longgetUnRoutedMessageCount()Returns the number of messages not routed to any bindingsbooleanisAutoCreated()Returns whether this address was created automatically in response to client action.booleanisInternal()Returns whether this address was created for the broker's internal use.booleanisPaging()Returns whether this address is paging.booleanisPaused()booleanisRetroactiveResource()booleanisTemporary()Returns 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.voidreplay(String target, String filter)voidreplay(String startScan, String endScan, String target, String filter)voidresume()Resume all the queues bound of this address.voidschedulePageCleanup()StringsendMessage(Map<String,String> headers, int type, String body, boolean durable, String user, String password)StringsendMessage(Map<String,String> headers, int type, String body, boolean durable, String user, String password, boolean createMessageId)voidunblock()
-
-
-
Field Detail
-
ROUTED_MESSAGE_COUNT_DESCRIPTION
static final String ROUTED_MESSAGE_COUNT_DESCRIPTION
- See Also:
- Constant Field Values
-
UNROUTED_MESSAGE_COUNT_DESCRIPTION
static final String UNROUTED_MESSAGE_COUNT_DESCRIPTION
- See Also:
- Constant Field Values
-
ADDRESS_SIZE_DESCRIPTION
static final String ADDRESS_SIZE_DESCRIPTION
- See Also:
- Constant Field Values
-
NUMBER_OF_PAGES_DESCRIPTION
static final String NUMBER_OF_PAGES_DESCRIPTION
- See Also:
- Constant Field Values
-
-
Method Detail
-
getAddress
String getAddress()
Returns the managed address.
-
getRoutingTypes
String[] getRoutingTypes()
-
getRoles
Object[] getRoles() throws Exception
Returns the roles (name and permissions) associated with this address.- Throws:
Exception
-
getRolesAsJSON
String getRolesAsJSON() throws Exception
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.
-
getNumberOfMessages
@Deprecated long 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
boolean isPaging() throws ExceptionReturns whether this address is paging.- Throws:
Exception
-
getAddressLimitPercent
int getAddressLimitPercent() throws ExceptionReturns the % of memory limit that is currently in use- Throws:
Exception
-
block
boolean block() throws ExceptionBlocks message production to this address by limiting credit- Returns:
- true if production is blocked
- Throws:
Exception
-
getNumberOfBytesPerPage
long getNumberOfBytesPerPage() throws ExceptionReturns the number of bytes used by each page for this address.- Throws:
Exception
-
getBindingNames
String[] getBindingNames() throws Exception
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
void pause() throws ExceptionPauses 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
void pause(boolean persist) throws ExceptionPauses 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
void resume() throws ExceptionResume 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()
-
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
long purge() throws ExceptionPurge all the queues bound of this address. Returns the total number of messages purged.- Throws:
Exception
-
-