io.helidon.messaging.connectors.aq.AqConfigBuilder
Description
Build AQ specific config
Configuration options
| Key | Type | Default | Description |
|---|---|---|---|
message-selector | String | JMS API message selector expression based on a subset of the SQL92 | |
named-factory | String | Select jakarta.jms.ConnectionFactory ConnectionFactory in case factory is injected as a named bean or configured with name | |
destination | String | Queue or topic name | |
subscriber-name | String | Subscriber name used to identify a durable subscription | |
transacted | Boolean | false | Indicates whether the session will use a local transaction |
non-local | Boolean | false | When set to true, messages published by this connection, or any connection with the same client identifier, will not be delivered to this durable subscription |
type | Type | QUEUE | Specify if connection is io.helidon.messaging.connectors.jms.Type#QUEUE queue or io.helidon.messaging.connectors.jms.Type#TOPIC topic |
durable | Boolean | false | Indicates whether the consumer should be created as durable (only relevant for topic destinations) |
password | String | Password used for creating JMS connection | |
poll-timeout | Long | 50 | Timeout for polling for next message in every poll cycle in millis |
data-source | String | Mapping to javax.sql.DataSource DataSource supplied with io.helidon.messaging.connectors.aq.AqConnector.AqConnectorBuilder#dataSource(String, javax.sql.DataSource) AqConnectorBuilder.dataSource() | |
topic | String | Use supplied destination name and Type#TOPIC TOPIC as type | |
acknowledge-mode | AcknowledgeMode | AUTO_ACKNOWLEDGE | JMS acknowledgement mode |
client-id | String | Client identifier for JMS connection | |
period-executions | Long | 100 | Period for executing poll cycles in millis |
queue | String | Use supplied destination name and Type#QUEUE QUEUE as type | |
session-group-id | String | When multiple channels share same session-group-id, they share same JMS session | |
username | String | User name used for creating JMS connection |
See the manifest for all available types.