|
@ -21,7 +21,8 @@ class Server(object): |
|
|
is stored in an in-memory structure, so the use of |
|
|
is stored in an in-memory structure, so the use of |
|
|
multiple connected servers is not possible. |
|
|
multiple connected servers is not possible. |
|
|
:param logger: To enable logging set to ``True`` or pass a logger object to |
|
|
:param logger: To enable logging set to ``True`` or pass a logger object to |
|
|
use. To disable logging set to ``False``. |
|
|
use. To disable logging set to ``False``. The default is |
|
|
|
|
|
``False``. |
|
|
:param binary: ``True`` to support binary payloads, ``False`` to treat all |
|
|
:param binary: ``True`` to support binary payloads, ``False`` to treat all |
|
|
payloads as text. On Python 2, if this is set to ``True``, |
|
|
payloads as text. On Python 2, if this is set to ``True``, |
|
|
``unicode`` values are treated as text, and ``str`` and |
|
|
``unicode`` values are treated as text, and ``str`` and |
|
@ -48,26 +49,32 @@ class Server(object): |
|
|
The first async mode that has all its dependencies |
|
|
The first async mode that has all its dependencies |
|
|
installed is then one that is chosen. |
|
|
installed is then one that is chosen. |
|
|
:param ping_timeout: The time in seconds that the client waits for the |
|
|
:param ping_timeout: The time in seconds that the client waits for the |
|
|
server to respond before disconnecting. |
|
|
server to respond before disconnecting. The default |
|
|
|
|
|
is 60 seconds. |
|
|
:param ping_interval: The interval in seconds at which the client pings |
|
|
:param ping_interval: The interval in seconds at which the client pings |
|
|
the server. |
|
|
the server. The default is 25 seconds. |
|
|
:param max_http_buffer_size: The maximum size of a message when using the |
|
|
:param max_http_buffer_size: The maximum size of a message when using the |
|
|
polling transport. |
|
|
polling transport. The default is 100,000,000 |
|
|
:param allow_upgrades: Whether to allow transport upgrades or not. |
|
|
bytes. |
|
|
|
|
|
:param allow_upgrades: Whether to allow transport upgrades or not. The |
|
|
|
|
|
default is ``True``. |
|
|
:param http_compression: Whether to compress packages when using the |
|
|
:param http_compression: Whether to compress packages when using the |
|
|
polling transport. |
|
|
polling transport. The default is ``True``. |
|
|
:param compression_threshold: Only compress messages when their byte size |
|
|
:param compression_threshold: Only compress messages when their byte size |
|
|
is greater than this value. |
|
|
is greater than this value. The default is |
|
|
|
|
|
1024 bytes. |
|
|
:param cookie: Name of the HTTP cookie that contains the client session |
|
|
:param cookie: Name of the HTTP cookie that contains the client session |
|
|
id. If set to ``None``, a cookie is not sent to the client. |
|
|
id. If set to ``None``, a cookie is not sent to the client. |
|
|
|
|
|
The default is ``'io'``. |
|
|
:param cors_allowed_origins: List of origins that are allowed to connect |
|
|
:param cors_allowed_origins: List of origins that are allowed to connect |
|
|
to this server. All origins are allowed by |
|
|
to this server. All origins are allowed by |
|
|
default. |
|
|
default. |
|
|
:param cors_credentials: Whether credentials (cookies, authentication) are |
|
|
:param cors_credentials: Whether credentials (cookies, authentication) are |
|
|
allowed in requests to this server. |
|
|
allowed in requests to this server. The default is |
|
|
|
|
|
``True``. |
|
|
:param engineio_logger: To enable Engine.IO logging set to ``True`` or pass |
|
|
:param engineio_logger: To enable Engine.IO logging set to ``True`` or pass |
|
|
a logger object to use. To disable logging set to |
|
|
a logger object to use. To disable logging set to |
|
|
``False``. |
|
|
``False``. The default is ``False``. |
|
|
""" |
|
|
""" |
|
|
def __init__(self, client_manager=None, logger=False, binary=False, |
|
|
def __init__(self, client_manager=None, logger=False, binary=False, |
|
|
json=None, async_handlers=False, **kwargs): |
|
|
json=None, async_handlers=False, **kwargs): |
|
|