Created
June 23, 2015 21:37
-
-
Save RinatMullayanov/69eb5caacc083bfd2610 to your computer and use it in GitHub Desktop.
Socket.io sample from http://stackoverflow.com/questions/10058226/send-response-to-all-clients-except-sender-socket-io
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// send to current request socket client | |
socket.emit('message', "this is a test"); | |
// sending to all clients, include sender | |
io.sockets.emit('message', "this is a test"); | |
// sending to all clients except sender | |
socket.broadcast.emit('message', "this is a test"); | |
// sending to all clients in 'game' room(channel) except sender | |
socket.broadcast.to('game').emit('message', 'nice game'); | |
// sending to all clients in 'game' room(channel), include sender | |
io.sockets.in('game').emit('message', 'cool game'); | |
// sending to individual socketid | |
io.sockets.socket(socketid).emit('message', 'for your eyes only'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment