You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm making a chat application in seamless and I have a get_members method in my ChatRoom class.
Now, I want the client to render the result of get_members when they press a button, but I also don't want the method
to be scoped to each client (because it uses the same ChatRoom instance for all the members).
Is it possible to force a callable to be a global event? Maybe using some force_global_event decorator on my method?
Thank you in advance :D
The text was updated successfully, but these errors were encountered:
I'm making a chat application in seamless and I have a
get_members
method in myChatRoom
class.Now, I want the client to render the result of
get_members
when they press a button, but I also don't want the methodto be scoped to each client (because it uses the same
ChatRoom
instance for all the members).Is it possible to force a callable to be a global event? Maybe using some
force_global_event
decorator on my method?Thank you in advance :D
The text was updated successfully, but these errors were encountered: