Thursday, May 23, 2024
 Popular · Latest · Hot · Upcoming
179
rated 0 times [  181] [ 2]  / answers: 1 / hits: 32014  / 9 Years ago, mon, may 25, 2015, 12:00:00

In socket.io, you usually use a specific syntax on the server side if you want to send a message to a specific room: io.to(room).emit('event', 'message');.



But how would a client (what I mean is the socket.io-related code running in a browser) indicate that a message should go to a specific room?



Is it common to just create something like this (of course the server has to evaluate it):



socket.emit('chat message', {room: 'abc', msg: 'hello there'});


Or does the socket.io client-side library offer a specific syntax for this purpose as well?



edit: to clarify, my suggestion from above seems to work, I'm just not sure if there's a better solution.


More From » node.js

 Answers
23

You've pretty much figured it out. Only the server can emit to specific rooms, because it is only the server that is actually connected to multiple clients. In other words, clients aren't connected to each other — the client-side library only manages communications between that one client and the server. So, if you want your client app to instruct the server to emit a message to all clients connected to a given room… that's basic API design. You could emit a socket event, or just do a regular http call to a route on your server. Either way you'll be sending metadata about which room(s) the server should broadcast to. The former (emitting) is probably preferred however, because that way on the server side you can use socket.broadcast.to to emit to all clients in the room EXCEPT the socket that initiated the call (a pretty common use case).


[#66484] Thursday, May 21, 2015, 9 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
jazmyne

Total Points: 503
Total Questions: 102
Total Answers: 99

Location: Svalbard and Jan Mayen
Member since Sun, Sep 25, 2022
2 Years ago
jazmyne questions
;