Skip to content Skip to sidebar Skip to footer

Django-channels Sending Message When Model Changes

I'm using django-channels to organize my websockets on backend. Right now everything is working alright except of message sending to the front-end when info in db is changed. Ther

Solution 1:

You can use signals to monitor the change and send a message to the consumer using the approach defined in the docs on how to interact with the consumer from the outside


Post a Comment for "Django-channels Sending Message When Model Changes"