Uses of Class
com.microsoft.azure.servicebus.MessageBody
-
Packages that use MessageBody Package Description com.microsoft.azure.servicebus -
-
Uses of MessageBody in com.microsoft.azure.servicebus
Methods in com.microsoft.azure.servicebus that return MessageBody Modifier and Type Method Description static MessageBody
MessageBody. fromBinaryData(List<byte[]> binaryData)
Creates a message body from a list of Data sections.Each Data section is a byte array.static MessageBody
MessageBody. fromSequenceData(List<List<Object>> sequenceData)
Creates a message body from a list of AMQPSequence sections.Each AMQPSequence section is in turn a list of objects.static MessageBody
MessageBody. fromValueData(Object value)
Creates message body of AMQPValue type.MessageBody
IMessage. getMessageBody()
Gets the body of this message.MessageBody
Message. getMessageBody()
Methods in com.microsoft.azure.servicebus with parameters of type MessageBody Modifier and Type Method Description void
IMessage. setMessageBody(MessageBody body)
Sets the body of this message.void
Message. setMessageBody(MessageBody body)
Constructors in com.microsoft.azure.servicebus with parameters of type MessageBody Constructor Description Message(MessageBody body)
Creates a message from message body.Message(MessageBody body, String contentType)
Creates a message from message body.Message(String messageId, MessageBody body, String contentType)
Creates a message from message body.
-