-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
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
Send messages specifically to a chatroom #12
Comments
Hi, Can i work on this |
Sure thing. I am assigning this to you. Feel free to leave a star at the repository if you find it helpful. |
Hi, I am thinking of creating a chatroom specific uri that can be used to communicate, without changing the backbone code much. is it correct. for e.g. if the chatroom is 12345678 then the client first ask the server for chatroom and password and create a new connection to the new uri locahost:port/12345678. please provide suggestions.? |
Hi, I have a doubt. Can we have same username across different chat rooms or the name should be unique entirely? like user "aditya" joining room 12345678 and 87654321 at same time. |
Hi, currently the client is sending a message to server and then server is notifying everyone about it, in notify_mesg. I want to select only those websockets at the server side, which correspond to a particular chatroom(users present in the chatroom using those websocket). |
The legacy method checks for messages at the client-side and outputs it only if it is subjected to the chatroom that the user has joined. This would lead to network usages even when there is no one sending anything in the chatroom.
The text was updated successfully, but these errors were encountered: