com.apama.correlator.jms
Event JMSSenderConfiguration


An event object representing the configuration of a new JMS sender, for dynamically adding JMS senders at runtime.

Call JMSConnection.createSenderConfiguration() to create an instance, and then use the setter actions to specify each required configuration option. Each setter method returns this configuration instance to make it possible to chain calls and specify all required options in a single statement.
See Also:
com.apama.correlator.jms.JMSConnection#createSenderConfiguration() - Creates a new JMSSenderConfiguration event object.
com.apama.correlator.jms.JMSConnection#addSenderWithConfiguration() - Uses a JMSSenderConfiguration to add a new JMS sender.

Action Summary
 stringgetConnectionId()

The identifier of the connection this sender belongs to.
 stringgetSenderId()

The unique identifier of this sender.
 stringgetSenderReliability()

Specifies the reliability mode to use for messages from this sender.
 com.apama.correlator.jms.JMSSenderConfigurationsetSenderReliability(string value)

Specifies the reliability mode to use for messages from this sender.
 
Action Detail

getConnectionId

string getConnectionId()
The identifier of the connection this sender belongs to.

getSenderId

string getSenderId()
The unique identifier of this sender.

getSenderReliability

string getSenderReliability()
Specifies the reliability mode to use for messages from this sender.

setSenderReliability

com.apama.correlator.jms.JMSSenderConfiguration setSenderReliability(string value)
Specifies the reliability mode to use for messages from this sender.
Parameters:
value - Must be one of the enumeration constants from the JMSSenderReliability event, or "" to indicate that the connection's defaultSenderReliability should be used.
See Also:
com.apama.correlator.jms.JMSSenderReliability -