You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The documentation (site / JavaDoc) does not state anywhere whether EngineIoServer or EngineIoSocket is thread-safe? Can for example socket.send be called from any thread, or does it need to be synchronized by the user?
The text was updated successfully, but these errors were encountered:
socket.send is indeed thread safe and does not need any synchronization on part of the user.
Anything that's not thread safe is an implementation issue.
It would be good to add this to the docs (preferably both on the general site and on each class in the Javadoc). If nothing is mentioned, the only safe thing is to assume classes are not thread-safe.
The documentation (site / JavaDoc) does not state anywhere whether EngineIoServer or EngineIoSocket is thread-safe? Can for example
socket.send
be called from any thread, or does it need to be synchronized by the user?The text was updated successfully, but these errors were encountered: