FRAMES NO FRAMES | ||||||
| ||||||
SUMMARY: IMPORT | MEMBER | ACTION | DETAIL: IMPORT | MEMBER | ACTION |
Member Summary | |
---|---|
string | connectionId
The unique identifier of the JMS connection. |
string | receiverId
The unique identifier of this receiver. |
string | status
An enumeration value specifying the status of the receiver. The values in the enumeration are provided as constants in this event. |
string | errorMessage
A user-readable string specifying the cause of the error. This is guaranteed not empty if status="ERROR" or "FATAL_ERROR". |
constant string | OK
The status value indicating that the receiver is fully connected to the JMS broker with a valid JMS Consumer object, and is available to receive messages. |
constant string | CONNECTING
The status value indicating that the receiver is waiting for the JMS connection or receiver session to be established. |
constant string | ERROR
The status value indicating that the receiver is not available due to some non-fatal error condition; the Correlator-JMS runtime will keep retrying in the background. |
constant string | DESTINATION_NOT_FOUND
The status value indicating the receiver could not be found because of a problem accessing the specified destination (i.e. a JMS or JNDI error). |
constant string | FATAL_ERROR
The status value indicating that the receiver is not available due to a fatal error condition. |
constant string | REMOVED
The status value indicating that the removal of a dynamic receiver has been completed, which will be sent some time after a receiver removal request, once all the associated state on the broker and the Correlator's database has been removed. |
dictionary<string, string > | extraStatusInfo
Additional status information items. None are currently supported. |
string | destination
A JMS queue name, JMS topic name, or JNDI name, prefixed by "queue:", "topic:" or "jndi:". |
string | receiverReliability
Receiver quality of service, specifying the reliability mode used for receiving messages. |
string | durableTopicSubscriptionName
A unique JMS subscription name if a durable topic subscription should be created, or "" if a non-durable topic subscription should be made. |
string | messageSelector
JMS message selector string, to specify a subset of messages from the destination to be processed by this receiver. |
boolean | noLocal
Specifies that messages sent to this destination by our own connection should be ignored by the receiver. |
dictionary<string, string > | extraAddParams
Additional receiver configuration parameters. None currently supported. |
Member Detail |
---|
constant string CONNECTING := "CONNECTING"The status value indicating that the receiver is waiting for the JMS connection or receiver session to be established.
string connectionIdThe unique identifier of the JMS connection.
string destinationA JMS queue name, JMS topic name, or JNDI name, prefixed by "queue:", "topic:" or "jndi:".
constant string DESTINATION_NOT_FOUND := "DESTINATION_NOT_FOUND"The status value indicating the receiver could not be found because of a problem accessing the specified destination (i.e. a JMS or JNDI error).
string durableTopicSubscriptionNameA unique JMS subscription name if a durable topic subscription should be created, or "" if a non-durable topic subscription should be made.
constant string ERROR := "ERROR"The status value indicating that the receiver is not available due to some non-fatal error condition; the Correlator-JMS runtime will keep retrying in the background.
string errorMessageA user-readable string specifying the cause of the error. This is guaranteed not empty if status="ERROR" or "FATAL_ERROR".
dictionary<string, string > extraAddParamsAdditional receiver configuration parameters. None currently supported.
dictionary<string, string > extraStatusInfoAdditional status information items. None are currently supported.
constant string FATAL_ERROR := "FATAL_ERROR"The status value indicating that the receiver is not available due to a fatal error condition.
string messageSelectorJMS message selector string, to specify a subset of messages from the destination to be processed by this receiver.
boolean noLocalSpecifies that messages sent to this destination by our own connection should be ignored by the receiver.
constant string OK := "OK"The status value indicating that the receiver is fully connected to the JMS broker with a valid JMS Consumer object, and is available to receive messages.
string receiverIdThe unique identifier of this receiver.
string receiverReliabilityReceiver quality of service, specifying the reliability mode used for receiving messages.
constant string REMOVED := "REMOVED"The status value indicating that the removal of a dynamic receiver has been completed, which will be sent some time after a receiver removal request, once all the associated state on the broker and the Correlator's database has been removed.
string statusAn enumeration value specifying the status of the receiver. The values in the enumeration are provided as constants in this event.
FRAMES NO FRAMES | ||||||
| ||||||
SUMMARY: IMPORT | MEMBER | ACTION | DETAIL: IMPORT | MEMBER | ACTION |