class documentation

class MultiDecoder(ContentDecoder):

View In Hierarchy

Handle the case where multiple encodings have been applied.
Method __init__ 'children' should be a sequence of decoders in the order in which each was applied.
Method decode Undocumented
Method flush Undocumented
Instance Variable children Undocumented
def __init__(self, children):
'children' should be a sequence of decoders in the order in which each was applied.
Parameters
children:typing.Sequence[ContentDecoder]Undocumented
def decode(self, data):

Undocumented

Parameters
data:bytesUndocumented
Returns
bytesUndocumented
def flush(self):

Undocumented

Returns
bytesUndocumented
children =

Undocumented