Browse Source

Document that callbacks cannot be used in external processes (Fixes https://github.com/miguelgrinberg/Flask-SocketIO/issues/1533)

pull/683/head
Miguel Grinberg 4 years ago
parent
commit
703843b42b
No known key found for this signature in database GPG Key ID: 36848B262DF5F06C
  1. 5
      docs/server.rst

5
docs/server.rst

@ -567,6 +567,11 @@ example::
# emit an event
external_sio.emit('my event', data={'foo': 'bar'}, room='my room')
A limitation of the write-only client manager object is that it cannot receive
callbacks when emitting. When the external process needs to receive callbacks,
using a client to connect to the server with read and write support is a better
option than a write-only client manager.
Debugging and Troubleshooting
-----------------------------

Loading…
Cancel
Save