MessageBodyType Enum

  • java.lang.Object
    • java.lang.Enum<MessageBodyType>
      • com.microsoft.azure.servicebus.MessageBodyType

public enum MessageBodyType

Enumeration to represent body type of a message.

Fields

BINARY

Message content is byte array, equivalent to AMQP Data.

SEQUENCE

Message content is a list of objects, equivalent to AMQP Sequence. Each object must be of a type supported by AMQP.

VALUE

Message content is a single object, equivalent to AMQP Value. The object must be of a type supported by AMQP.

Applies to