1 2 3 4 5 6 7 8 9 10 11 12
|
``tornado.httpserver`` --- Non-blocking HTTP server
===================================================
.. automodule:: tornado.httpserver
HTTP Server
-----------
.. autoclass:: HTTPServer(request_callback: Union[httputil.HTTPServerConnectionDelegate, Callable[[httputil.HTTPServerRequest], None]], no_keep_alive: bool = False, xheaders: bool = False, ssl_options: Union[Dict[str, Any], ssl.SSLContext] = None, protocol: Optional[str] = None, decompress_request: bool = False, chunk_size: Optional[int] = None, max_header_size: Optional[int] = None, idle_connection_timeout: Optional[float] = None, body_timeout: Optional[float] = None, max_body_size: Optional[int] = None, max_buffer_size: Optional[int] = None, trusted_downstream: Optional[List[str]] = None)
:members:
The public interface of this class is mostly inherited from
`.TCPServer` and is documented under that class.
|