We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
it's possible to add the local flag when emitting to a room
// sending to all clients on this node (when using multiple nodes) io.to(channel).local .emit(message.event, channel, message.data)
however, when broadcasting from a socket instance it's not possible to add a local flag is there any way to achieve the same behavior?
// this wont work socket.broadcast.to(channel).local .emit(message.event, channel, message.data);
thank you
The text was updated successfully, but these errors were encountered:
Closed by #3219
Sorry, something went wrong.
No branches or pull requests
it's possible to add the local flag when emitting to a room
however, when broadcasting from a socket instance it's not possible to add a local flag is there any way to achieve the same behavior?
thank you
The text was updated successfully, but these errors were encountered: