Re: Django channel 2: do I have to prefix value of 'type' (the listening consumer method) of group_send with consumer class name if the consumer is a different one

2019-06-12 Thread Arean Bbay
Only the StudentConsumer has assignQuiz, the InstructorConsumer doesn't 
have.
So, you were saying so long as the method is invoked on the group that the 
StudentConsumer belongs to, there should be no problem?



On Wednesday, June 12, 2019 at 8:43:35 PM UTC-7, Ahmed Ishtiaque wrote:
>
> If my Channels 2 knowledge serves me right, your group names for these two 
> consumers should be unique. The group names should determine which 
> consumer's assignQuiz method is executed. 
>
> Hope this helps!
>
> On Wed, Jun 12, 2019 at 9:25 PM Arean Bbay  > wrote:
>
>> I have 2 consumers, namely StudentConsumer and InstructorConsumer.So if 
>> the url is:
>> ws://quizz_poll//student, it will be routed to the former.
>> otherwise ws://quizz_poll//instructor, then it will be routed to the 
>> latter.
>>
>> Within studentConsumer is a assignQuizzz(...) method. What I want to do 
>> is to  invoke that assignQuizz of student from instructor consumer using 
>> group_send.
>> The problem is I don't know how. Say if I only have one consumer, then I 
>> could do from the InstructorCousumer
>>
>>
>>
>>
>>
>> *self.channel_layer.group_send(group_name,
>> {"type": "assignQuizz","message": 
>> message,   }*
>> In my case do I just use "type" : "StudentConsumer.assignQuizz" ?
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to django...@googlegroups.com .
>> To post to this group, send email to django...@googlegroups.com 
>> .
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/293849f4-eb39-468f-a3fd-961d19e1dad2%40googlegroups.com
>>  
>> <https://groups.google.com/d/msgid/django-users/293849f4-eb39-468f-a3fd-961d19e1dad2%40googlegroups.com?utm_medium=email_source=footer>
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/a3cd6d78-57c9-42ae-a907-78b9220cfb44%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Django channel 2: do I have to prefix value of 'type' (the listening consumer method) of group_send with consumer class name if the consumer is a different one

2019-06-12 Thread Arean Bbay
I have 2 consumers, namely StudentConsumer and InstructorConsumer.So if the 
url is:
ws://quizz_poll//student, it will be routed to the former.
otherwise ws://quizz_poll//instructor, then it will be routed to the latter.

Within studentConsumer is a assignQuizzz(...) method. What I want to do is 
to  invoke that assignQuizz of student from instructor consumer using 
group_send.
The problem is I don't know how. Say if I only have one consumer, then I 
could do from the InstructorCousumer





*self.channel_layer.group_send(group_name,
{"type": "assignQuizz","message": 
message,   }*
In my case do I just use "type" : "StudentConsumer.assignQuizz" ?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/293849f4-eb39-468f-a3fd-961d19e1dad2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Channel 2 no longer has Group object. If so, how can we know if a particular group is already created?

2019-06-09 Thread Arean Bbay
I want certain users to have the ability to join a  group, if it is already 
created but not create one. In order to do that I need a way to check it. 
How to do that?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/e0b9e861-6a9d-4213-b407-50a79c8c3173%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Is it possible to check the existence of Group in Django Channel ?

2019-06-06 Thread Arean Bbay
I would like to make a channel to be able to check if a group exists, so 
that it can join.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/3d1b7650-35c7-46be-983c-be491f2b756f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.