Habari Client for ActiveMQ 6.12
Object Pascal STOMP client library for Apache ActiveMQ
TBTTextMessage Class Reference

This object represents a text message. More...

Inheritance diagram for TBTTextMessage:
TBTMessage ITextMessage

Public Attributes

string Text
 Text - the message text (Unicode). More...
 
- 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...
 

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.
 

Detailed Description

This object represents a text message.

Member Data Documentation

◆ Text

string TBTTextMessage::Text

Text - the message text (Unicode).

See also
GetText For reading
SetText For writing