Browse Source
documentation on user session behavior on disconnections (Fixes #308)
pull/319/head
Miguel Grinberg
6 years ago
No known key found for this signature in database
GPG Key ID: 36848B262DF5F06C
1 changed files with
4 additions and
1 deletions
-
docs/server.rst
|
@ -396,7 +396,6 @@ retrieve information in the user session:: |
|
|
|
|
|
|
|
|
For the ``asyncio`` server, these methods are coroutines:: |
|
|
For the ``asyncio`` server, these methods are coroutines:: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@sio.event |
|
|
@sio.event |
|
|
async def connect(sid, environ): |
|
|
async def connect(sid, environ): |
|
|
username = authenticate_user(environ) |
|
|
username = authenticate_user(environ) |
|
@ -437,6 +436,10 @@ The ``get_session()``, ``save_session()`` and ``session()`` methods take an |
|
|
optional ``namespace`` argument. If this argument isn't provided, the session |
|
|
optional ``namespace`` argument. If this argument isn't provided, the session |
|
|
is attached to the default namespace. |
|
|
is attached to the default namespace. |
|
|
|
|
|
|
|
|
|
|
|
Note: the contents of the user session are destroyed when the client |
|
|
|
|
|
disconnects. In particular, user session contents are not preserved when a |
|
|
|
|
|
client reconnects after an unexpected disconnection from the server. |
|
|
|
|
|
|
|
|
Using a Message Queue |
|
|
Using a Message Queue |
|
|
--------------------- |
|
|
--------------------- |
|
|
|
|
|
|
|
|