Name | +Description | +JMS Equivalent | +
---|---|---|
setBodyInputStream(InputStream) | +Set the InputStream used to read a message body when sending it. | +JMS_HQ_InputStream | +
setOutputStream(OutputStream) | +Set the OutputStream that will receive the body of a message. This method does not block. | +JMS_HQ_OutputStream | +
saveOutputStream(OutputStream) | +Save the body of the message to the `OutputStream`. It will block until the entire content is transferred to the `OutputStream`. | +JMS_HQ_SaveStream | +
Logger | +Logger Description | +
---|---|
org.jboss.logging | +Logs any calls not handled by the ActiveMQ loggers | +
org.apache.activemq.core.server | +Logs the core server | +
org.apache.activemq.utils | +Logs utility calls | +
org.apache.activemq.journal | +Logs Journal calls | +
org.apache.activemq.jms | +Logs JMS calls | +
org.apache.activemq.integration.bootstrap | +Logs bootstrap calls | +
Property Name | +Description | +Default | +
---|---|---|
`max-size-bytes` | +What's the max memory the address could have before entering on page mode. | +-1 (disabled) | +
`page-size-bytes` | +The size of each page file used on the paging system | +10MiB (10 \* 1024 \* 1024 bytes) | +
`address-full-policy` | +This must be set to PAGE for paging to enable. If the value is PAGE then further messages will be paged to disk. If the value is DROP then further messages will be silently dropped. If the value is FAIL then the messages will be dropped and the client message producers will receive an exception. If the value is BLOCK then client message producers will block when they try and send further messages. | +PAGE | +
`page-max-cache-size` | +The system will keep up to \<`page-max-cache-size` page files in memory to optimize IO during paging navigation. | +5 | +