Habari Client for OpenMQ 6.12
Object Pascal STOMP client library for OpenMQ
TBTMapMessage Class Reference

A MapMessage object is used to send a set of name-value pairs. More...

Inheritance diagram for TBTMapMessage:
IMapMessage TBTMessage

Additional Inherited Members

- Public Member Functions inherited from TBTMessage
 Acknowledge ()
 Acknowledges all consumed messages of the session of this consumed message. More...
 
 Nack ()
 NACK is the opposite of ACK. More...
 
PMStrings GetPropertyNames ()
 Returns a list of all the property names.
 
Boolean GetBooleanProperty (const string Key)
 Get the value of boolean property Key.
 
 SetBooleanProperty (const string Key, const Boolean Value)
 Set the value of boolean property Key.
 
Integer GetIntProperty (const string Key)
 Get the value of int property Key.
 
 SetIntProperty (const string Key, const Integer Value)
 Set the value of int property Key.
 
string GetStringProperty (const string Key)
 Get the value of string property Key.
 
 SetStringProperty (const string Key, const string Value)
 Set the value of string property Key.
 
- Public Attributes inherited from TBTMessage
RawByteString Content
 The message content. More...
 
string StompSubscriptionID
 required for ACK in STOMP 1.1 More...
 
string JMSCorrelationID
 Good consumes will add this header to any responses they send so that entire conversations can be correlated. More...
 
IDestination JMSDestination
 Gets the Destination object for this message. More...
 
TDateTime JMSExpiration
 The message's expiration value. More...
 
TJMSDeliveryMode JMSDeliveryMode
 Whether or not the message is persistent. More...
 
Integer JMSPriority
 The message priority level. More...
 
Boolean JMSRedelivered
 Redelivered - True if this message has been redelivered to this or another consumer before being acknowledged successfully. More...
 
IDestination JMSReplyTo
 The Destination object to which a reply to this message should be sent. More...
 
TDateTime JMSTimestamp
 The timestamp the broker added to the message. More...
 
string JMSMessageID
 The message ID which is set by the provider. More...
 
string JMSType
 The type name of this message. More...
 
string TransactionID
 The transaction id. More...
 

Detailed Description

A MapMessage object is used to send a set of name-value pairs.

The names are String objects, and the values are String objects. The names must have a value that is not null, and not an empty string. The entries can be accessed sequentially or randomly by name. The order of the entries is undefined.