Part of twisted.web.static View Source View In Hierarchy
StaticProducer
that writes a single chunk of a file to the request.
Method | __init__ | Initialize the instance. |
Method | start | Undocumented |
Method | resumeProducing | Produce data for the consumer a single time. |
Inherited from StaticProducer:
Method | stopProducing | Stop producing data. |
Parameters | request | See StaticProducer .
|
fileObject | See StaticProducer .
| |
offset | The offset into the file of the chunk to be written. | |
size | The size of the chunk to write. |
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.