Browse Source

documentation on user session behavior on disconnections (Fixes #308)

pull/319/head
Miguel Grinberg 6 years ago
parent
commit
2aa8636223
No known key found for this signature in database GPG Key ID: 36848B262DF5F06C
  1. 5
      docs/server.rst

5
docs/server.rst

@ -396,7 +396,6 @@ retrieve information in the user session::
For the ``asyncio`` server, these methods are coroutines::
@sio.event
async def connect(sid, 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
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
---------------------

Loading…
Cancel
Save