Part of twisted.web.http View Source View In Hierarchy
Known subclasses: twisted.web.server.Site
Method | __init__ | Undocumented |
Method | buildProtocol | Create an instance of a subclass of Protocol. |
Method | startFactory | Set up request logging if necessary. |
Method | stopFactory | This will be called before I stop listening on all Ports/Connectors. |
Method | log | Log a request's result to the logfile, by default in combined log format. |
Instance Variable | _logDateTime | A cached datetime string for log messages, updated by
_logDateTimeCall . (type: str ) |
Instance Variable | _logDateTimeCall | A delayed call for the next update to the cached log datetime string. (type: IDelayedCall
provided) |
Method | _updateLogDateTime | Update log datetime periodically, so we aren't always recalculating it. |
Method | _openLogFile | Override in subclasses, e.g. to use twisted.python.logfile. |
Method | _escape | Undocumented |
Inherited from Factory (via ServerFactory):
Method | logPrefix | Describe this factory for log messages. |
Method | doStart | Make sure startFactory is called. |
Method | doStop | Make sure stopFactory is called. |
IDelayedCall
provided)
The returned instance will handle input on an incoming server connection, and an attribute "factory" pointing to the creating factory.
Override this method to alter how Protocol instances get created.
Parameters | addr | an object implementing twisted.internet.interfaces.IAddress |
This can be overridden to perform 'shutdown' tasks such as disconnecting database connections, closing files, etc.
It will be called, for example, before an application shuts down, if it was connected to a port. User code should not call this function directly.