Is there any way to disconnect a client with SocketIO, and literally close the connection? So if someone is connected to my server, and I want to close the connection between them and my server, how would I go about doing that?
|
feedback
|
|
So the question remain : how to force a client to disconnect from server side ? | |||
|
feedback
|
|
Assuming your socket's named socket, use:
| |||
feedback
|
|
client._onDisconnect() should work | |||||||||||
feedback
|
|
This is not possible yet. If you need it as well, vote/comment on this issue. | |||||||||
feedback
|
|
For those who found this on google - there is a solution for this right now:
| |||
|
feedback
|
|
Socket.io uses the EventEmitter pattern to disconnect/connect/check heartbeats so you could do. Client.emit('disconnect'); | |||
|
feedback
|
|
Any reason why you can't have the server emit a message to the client that makes it call the disconnect function? On server:
On client:
| |||
|
feedback
|