-
Hello @hishnash I wanted to ask you a question, how do you send a message to all the users that are connected to the channel using view_as_consumer? and I also wanted to know how to add groups, if you have an example of how to do this it would be epic Thanks greetings! |
Beta Was this translation helpful? Give feedback.
Answered by
hishnash
May 19, 2022
Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
hishnash
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
view_as_consumer
is not intended for this use case, if you need to communicate with the open connection you will need to use theApiConsumer
orGenericAsyncAPIConsumer
consumer base classes since any communication over the channel will require async methods.