Skip to content

Commit 98f3cb4

Browse files
Update documentation of asyncio server
1 parent 98318fb commit 98f3cb4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/socketio/asyncio_server.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ class AsyncServer(server.Server):
4646
4747
:param async_mode: The asynchronous model to use. See the Deployment
4848
section in the documentation for a description of the
49-
available options. Valid async modes are "threading",
50-
"eventlet", "gevent" and "gevent_uwsgi". If this
51-
argument is not given, "eventlet" is tried first, then
52-
"gevent_uwsgi", then "gevent", and finally "threading".
53-
The first async mode that has all its dependencies
54-
installed is then one that is chosen.
49+
available options. Valid async modes are "aiohttp",
50+
"sanic", "tornado" and "asgi". If this argument is not
51+
given, "aiohttp" is tried first, followed by "sanic",
52+
"tornado", and finally "asgi". The first async mode that
53+
has all its dependencies installed is the one that is
54+
chosen.
5555
:param ping_interval: The interval in seconds at which the server pings
5656
the client. The default is 25 seconds. For advanced
5757
control, a two element tuple can be given, where

0 commit comments

Comments
 (0)