class documentation

class MultipleRangeStaticProducer(StaticProducer): (source)

View In Hierarchy

A StaticProducer that writes several chunks of a file to the request.
Method __init__ Initialize the instance.
Method resume​Producing Produce data for the consumer a single time.
Method start Undocumented
Instance Variable part​Boundary Undocumented
Instance Variable range​Info Undocumented
Instance Variable range​Iter Undocumented
Method _next​Range Undocumented
Instance Variable _part​Bytes​Written Undocumented
Instance Variable _part​Size Undocumented

Inherited from StaticProducer:

Method stop​Producing Stop producing data.
Instance Variable file​Object The file the contents of which to write to the request.
Instance Variable request The IRequest to write the contents of the file to.
def __init__(self, request, fileObject, rangeInfo): (source)
Initialize the instance.
Parameters
requestSee StaticProducer.
file​ObjectSee StaticProducer.
range​Info

A list of tuples [(boundary, offset, size)] where:

  • boundary will be written to the request first.
  • offset the offset into the file of chunk to write.
  • size the size of the chunk to write.
def resumeProducing(self): (source)

Produce data for the consumer a single time.

This tells a producer to produce data for the consumer once (not repeatedly, once only). Typically this will be done by calling the consumer's write method a single time with produced data. The producer should produce data before returning from resumeProducing(), that is, it should not schedule a deferred write.

def start(self): (source)
partBoundary = (source)

Undocumented

rangeInfo = (source)

Undocumented

rangeIter = (source)

Undocumented

def _nextRange(self): (source)

Undocumented

_partBytesWritten: int = (source)

Undocumented

_partSize = (source)

Undocumented