Part of twisted.web2.channel.fastcgi View Source View In Hierarchy
Method | packetReceived | |
Method | fcgi_get_values | Undocumented |
Method | fcgi_unknown_type | Undocumented |
Method | fcgi_begin_request | Undocumented |
Method | fcgi_abort_request | Undocumented |
Method | fcgi_params | Undocumented |
Method | fcgi_stdin | Undocumented |
Method | fcgi_data | Undocumented |
Method | write | Undocumented |
Method | writeHeaders | Undocumented |
Method | finish | Undocumented |
Method | writePacket | Undocumented |
Method | dataReceived | Called whenever data is received. |
Method | pauseProducing | Undocumented |
Method | resumeProducing | Undocumented |
Method | stopProducing | Undocumented |
Inherited from BaseCGIChannelRequest:
Method | makeRequest | Undocumented |
Method | writeIntermediateResponse | Ignore, CGI doesn't support. |
Method | getHostInfo | Undocumented |
Method | getRemoteHost | Undocumented |
Method | abortConnection | Undocumented |
Method | registerProducer | Undocumented |
Method | unregisterProducer | Undocumented |
Method | writeConnectionLost | Notification of the write connection being closed. |
Method | readConnectionLost | Notification of the read connection being closed. |
Inherited from Protocol (via BaseCGIChannelRequest):
Method | connectionLost | Called when the connection is shut down. |
Inherited from BaseProtocol (via BaseCGIChannelRequest, Protocol):
Method | makeConnection | Make a connection to a transport and a server. |
Method | connectionMade | Called when a connection is made. |
Parameters | packet | instance of fastcgi.Record .
|
Raises | FastCGIError on invalid version or where the type does not exist in funName |
Called whenever data is received.
Use this method to translate to a higher-level message. Usually, some callback will be made upon the receipt of each complete protocol message.Parameters | data | a string of indeterminate length. Please keep in mind that you will probably need to buffer some data, as partial (or multiple) protocol messages may be received! I recommend that unit tests for protocols call through to this method with differing chunk sizes, down to one byte at a time. |