Class JmsConfigBuilder
java.lang.Object
io.helidon.messaging.ConnectorConfigBuilder
io.helidon.messaging.connectors.jms.JmsConfigBuilder
- All Implemented Interfaces:
Builder<ConnectorConfigBuilder,
,Config> Supplier<Config>
Build Jms specific config.
-
Method Summary
Modifier and TypeMethodDescriptionacknowledgeMode
(AcknowledgeMode acknowledgeMode) JMS acknowledgement mode.destination
(String destination) Queue or topic name.jndiInitialContextProperties
(Map<String, String> initialContextProps) Environment properties used for creating initial context java.naming.factory.initial, java.naming.provider.url.jndiInitialFactory
(Class<? extends InitialContextFactory> jndiInitialFactory) JNDI initial factory.jndiInitialFactory
(String jndiInitialFactory) JNDI initial factory.jndiJmsFactory
(String jndiJmsFactory) JNDI name of JMS factory.jndiProviderUrl
(String jndiProviderUrl) JNDI provider url.messageSelector
(String messageSelector) JMS API message selector expression based on a subset of the SQL92.namedFactory
(String factoryName) To select from manually configuredConnectionFactories
overJmsConnectorBuilder#connectionFactory()
.Password used for creating JMS connection.periodExecutions
(long periodExecutions) Period for executing poll cycles in millis.pollTimeout
(long pollTimeout) Timeout for polling for next message in every poll cycle in millis.Add custom property.Use supplied destination name andQUEUE
as type.sessionGroupId
(String sessionGroupId) When multiple channels share same session-group-id, they share same JMS session.Use supplied destination name andTOPIC
as type.transacted
(boolean transacted) Indicates whether the session will use a local transaction.User name used for creating JMS connection.Methods inherited from class io.helidon.messaging.ConnectorConfigBuilder
build
-
Method Details
-
property
Add custom property.- Overrides:
property
in classConnectorConfigBuilder
- Parameters:
key
- property keyvalue
- property value- Returns:
- this builder
-
namedFactory
To select from manually configuredConnectionFactories
overJmsConnectorBuilder#connectionFactory()
.- Parameters:
factoryName
- connection factory name- Returns:
- this builder
-
acknowledgeMode
JMS acknowledgement mode.- AUTO_ACKNOWLEDGE Acknowledges automatically after message reception over JMS api.
- CLIENT_ACKNOWLEDGE Message is acknowledged when
Message.ack()
is invoked either manually or byAcknowledgment
policy. - DUPS_OK_ACKNOWLEDGE Messages are acknowledged lazily which can result in duplicate messages being delivered.
- Type: enum
- Default: AUTO_ACKNOWLEDGE
- Valid Values: AUTO_ACKNOWLEDGE, CLIENT_ACKNOWLEDGE, DUPS_OK_ACKNOWLEDGE
- Parameters:
acknowledgeMode
- AUTO_ACKNOWLEDGE, CLIENT_ACKNOWLEDGE, DUPS_OK_ACKNOWLEDGE- Returns:
- this builder
-
transacted
Indicates whether the session will use a local transaction.- Type: boolean
- Default: false
- Valid Values: true, false
- Parameters:
transacted
- true if so- Returns:
- this builder
-
username
User name used for creating JMS connection.- Type: string
- Parameters:
username
- JMS connection user name- Returns:
- this builder
-
password
Password used for creating JMS connection.- Type: string
- Parameters:
password
- JMS connection password- Returns:
- this builder
-
type
-
destination
Queue or topic name.- Type: string
- Parameters:
destination
- queue or topic name- Returns:
- this builder
-
queue
Use supplied destination name andQUEUE
as type.- Type: string
- Parameters:
destination
- queue name- Returns:
- this builder
-
topic
Use supplied destination name andTOPIC
as type.- Type: string
- Parameters:
destination
- topic name- Returns:
- this builder
-
messageSelector
JMS API message selector expression based on a subset of the SQL92. Expression can only access headers and properties, not the payload.- Type: string
- Example: NewsType = ’Sports’ OR NewsType = ’Opinion’
- Parameters:
messageSelector
- message selector expression- Returns:
- this builder
-
pollTimeout
Timeout for polling for next message in every poll cycle in millis.- Type: milliseconds
- Default: 50
- Parameters:
pollTimeout
- timeout of polling for next message- Returns:
- this builder
-
periodExecutions
Period for executing poll cycles in millis.- Type: milliseconds
- Default: 100
- Parameters:
periodExecutions
- period for executing poll cycles in millis- Returns:
- this builder
-
sessionGroupId
When multiple channels share same session-group-id, they share same JMS session.- Type: string
- Parameters:
sessionGroupId
- identifier for channels sharing same JMS session- Returns:
- this builder
-
jndiJmsFactory
JNDI name of JMS factory.- Type: string
- Parameters:
jndiJmsFactory
- JNDI name of JMS factory- Returns:
- this builder
-
jndiInitialFactory
JNDI initial factory.- Type: string
- Parameters:
jndiInitialFactory
- JNDI initial factory- Returns:
- this builder
-
jndiInitialFactory
public JmsConfigBuilder jndiInitialFactory(Class<? extends InitialContextFactory> jndiInitialFactory) JNDI initial factory.- Type: string
- Parameters:
jndiInitialFactory
- JNDI initial factory- Returns:
- this builder
-
jndiProviderUrl
JNDI provider url.- Type: string
- Parameters:
jndiProviderUrl
- JNDI provider url- Returns:
- this builder
-
jndiInitialContextProperties
Environment properties used for creating initial context java.naming.factory.initial, java.naming.provider.url.- Type: string
- Parameters:
initialContextProps
- properties used for creating JNDI initial context- Returns:
- this builder
-