DataBody Class

An AMQP message body of type Data. This represents a list of bytes sections.

Inheritance
DataBody

Constructor

DataBody(c_message, encoding='UTF-8')

Parameters

Name Description
c_message
Required
encoding
default value: UTF-8

Variables

Name Description
type

The body type. This should always be DataType.

data

The data contained in the message body. This returns a generator to iterate over each section in the body, where each section will be a byte string.

Methods

append

Append a section to the body.

append

Append a section to the body.

append(data)

Parameters

Name Description
data
Required
str or bytes

The data to append.

Attributes

data

type