Is it possible that a websocket client connection, while receiving larger number of data chunks, can send data to server at the same time?
Asked
Active
Viewed 209 times
0
-
It actually depends if the websocket-receive / send functions are blocking, if not it should work – Antax May 12 '20 at 15:53
-
Thank you for your answer. I just discovered that the callback functions are blocking. That leads to solution. – C-Nut May 24 '20 at 01:50