Возможно глупый вопрос.
Фраза в
документации поставила меня в тупик.
Disconnects this client. If value of close is true, closes the underlying connection. Otherwise, it just disconnects the namespace.
Объясните, что закрывает этот код
io.on('connection', (socket) => {
setTimeout(() => socket.disconnect(true), 5000);
});
И этот:
io.on('connection', (socket) => {
setTimeout(() => socket.disconnect(), 5000);
});