Part of twisted.web2.iweb View Source View In Hierarchy
| Method | __init__ | Create a new Request object. |
| Method | process | Process the request. Called as soon as it's possibly reasonable to
return a response. handleContentComplete
may or may not have been called already.
|
| Method | handleContentChunk | Called when a piece of incoming data has been received. |
| Method | handleContentComplete | Called when the incoming data stream is finished. |
| Method | connectionLost | Called if the connection was lost. |
| Parameters | chanRequest | the IChanRequest object creating this request |
| command | the HTTP command e.g. GET | |
| path | the HTTP path e.g. /foo/bar.html | |
| version | the parsed HTTP version e.g. (1,1) | |
| contentLength | how much data to expect, or None if unknown | |
| inHeaders | the request headers |
handleContentComplete
may or may not have been called already.