class EnsLib.MQSeries.Message
extends %RegisteredObject
MQ Series Message wrapper
property Body
as %String(MAXLEN="");
Contains the message body as a string unless the body is too long, or unless the Adapter's ContentStreamClassname property was set to always use BodyStream instead
property BodySize
as %Integer [ Calculated ];
property BodyStream
as %RegisteredObject;
Contains the message body as a stream if property Body is empty
property MessageId
as %String(MAXLEN=128);
property Source
as %String(MAXLEN="");
method BodySizeGet()
as %Integer
This is a Get accessor method for the BodySize property.