Browse Source

Update documentation of asyncio server

pull/930/head
Miguel Grinberg 3 years ago
committed by GitHub
parent
commit
98f3cb4664
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      src/socketio/asyncio_server.py

12
src/socketio/asyncio_server.py

@ -46,12 +46,12 @@ class AsyncServer(server.Server):
:param async_mode: The asynchronous model to use. See the Deployment :param async_mode: The asynchronous model to use. See the Deployment
section in the documentation for a description of the section in the documentation for a description of the
available options. Valid async modes are "threading", available options. Valid async modes are "aiohttp",
"eventlet", "gevent" and "gevent_uwsgi". If this "sanic", "tornado" and "asgi". If this argument is not
argument is not given, "eventlet" is tried first, then given, "aiohttp" is tried first, followed by "sanic",
"gevent_uwsgi", then "gevent", and finally "threading". "tornado", and finally "asgi". The first async mode that
The first async mode that has all its dependencies has all its dependencies installed is the one that is
installed is then one that is chosen. chosen.
:param ping_interval: The interval in seconds at which the server pings :param ping_interval: The interval in seconds at which the server pings
the client. The default is 25 seconds. For advanced the client. The default is 25 seconds. For advanced
control, a two element tuple can be given, where control, a two element tuple can be given, where

Loading…
Cancel
Save