Background threads in synchronous python-socketio Client #1019
-
My question is different from the scenario in |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The style in which the server is written is irrelevant to the client, so that is not something that you need to worry about. The sync or async style matters within the same process only. If your client uses threads, then you should be fine, since a blocked thread does not block other threads. |
Beta Was this translation helpful? Give feedback.
The style in which the server is written is irrelevant to the client, so that is not something that you need to worry about. The sync or async style matters within the same process only.
If your client uses threads, then you should be fine, since a blocked thread does not block other threads.