This framework is not designed for multi-thread java application?
As I see the thread model is base on EventThread.java, which is included in engine-io.
Hi! In its current form, the Socket object is indeed not thread safe. I'm not sure the effort that would be required to make it thread safe though.
The EventThread is meant for use in an Android application, in order not to block the main thread.
Hi there, thanks for your reply, what im doing is: Use this framework in my java server side service "A", and as a client side which connects to a netty-socketio server. So all the users in my "A" programme share this EventThread, which i found it's a single thread design. But i suppose it only responses for protocol encoding/decoding, so it will not pull down the system performance.