Guest User

Untitled

a guest
Jan 24th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. // Send the message to all clients except the sender
  2. socket.broadcast.emit('event', data);
  3.  
  4. // Same but not guaranteed
  5. socket.volatile.emit('event', data);
  6.  
  7. // Send the message to all clients including the sender
  8. io.sockets.emit('event', data);
Add Comment
Please, Sign In to add comment