pamqp.body

The pamqp.body module contains the Body class which is used when unmarshalling body frames. When dealing with content frames, the message body will be returned from the library as an instance of the body class.

class pamqp.body.ContentBody(value)[source]

ContentBody carries the value for an AMQP message body frame

Parameters

value (bytes) – The value for the ContentBody frame

__len__()[source]

Return the length of the content body value

Return type

int

marshal()[source]

Return the marshaled content body. This method is here for API compatibility, there is no special marshaling for the payload in a content frame.

Return type

bytes

unmarshal(data)[source]

Apply the data to the object. This method is here for API compatibility, there is no special unmarshalling for the payload in a content frame.

Parameters

data (bytes) – The content body data from the frame

Return type

None