Replies: 1 comment 1 reply
-
This depends on implementation details of the gevent scheduler, it is not a question that I can answer. If you want the messages from a client to be processed in strict order, pass |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi there,
Good day.
I have a quick query:
we have Flask-Socketio (using gevent) as server forwarding room message like below:
simplified from example app_namespace.py:
if
client send '1' to room1
client send '2' to room1
will room message be emitted by server in order ?
or in extreme case, will gevent schedule on_my_room_event() to emit message '2' prior to '1' ?
Beta Was this translation helpful? Give feedback.
All reactions