class documentation

Wrap a IResource, potentially applying an encoding to the response body generated.

Note that the returned children resources won't be wrapped, so you have to explicitly wrap them if you want the encoding to be applied.

Present Since
12.3
Method __init__ Undocumented
Method getEncoder Browser the list of encoders looking for one applicable encoder.
Instance Variable encoders A list of _IRequestEncoderFactory returning _IRequestEncoder that may transform the data passed to Request.write. The list must be sorted in order of priority: the first encoder factory handling the request will prevent the others from doing the same.
Instance Variable _encoders Undocumented
def __init__(self, original, encoders): (source)

Undocumented

def getEncoder(self, request): (source)

Browser the list of encoders looking for one applicable encoder.

encoders: list. = (source)

A list of _IRequestEncoderFactory returning _IRequestEncoder that may transform the data passed to Request.write. The list must be sorted in order of priority: the first encoder factory handling the request will prevent the others from doing the same.

_encoders = (source)

Undocumented