mirror of
https://github.com/django/daphne.git
synced 2025-07-13 17:32:17 +03:00
42 lines
1.4 KiB
Python
42 lines
1.4 KiB
Python
import logging
|
|
|
|
from .message import Message
|
|
from .utils import name_that_thing
|
|
|
|
logger = logging.getLogger('django.channels')
|
|
|
|
|
|
class Worker(object):
|
|
"""
|
|
A "worker" process that continually looks for available messages to run
|
|
and runs their consumers.
|
|
"""
|
|
|
|
def __init__(self, channel_backend, callback=None):
|
|
self.channel_backend = channel_backend
|
|
self.callback = callback
|
|
|
|
def run(self):
|
|
"""
|
|
Tries to continually dispatch messages to consumers.
|
|
"""
|
|
channels = self.channel_backend.registry.all_channel_names()
|
|
while True:
|
|
channel, content = self.channel_backend.receive_many_blocking(channels)
|
|
message = Message(
|
|
content=content,
|
|
channel=channel,
|
|
channel_backend=self.channel_backend,
|
|
reply_channel=content.get("reply_channel", None),
|
|
)
|
|
# Handle the message
|
|
consumer = self.channel_backend.registry.consumer_for_channel(channel)
|
|
if self.callback:
|
|
self.callback(channel, message)
|
|
try:
|
|
consumer(message)
|
|
except Message.Requeue:
|
|
self.channel_backend.send(channel, content)
|
|
except:
|
|
logger.exception("Error processing message with consumer %s:", name_that_thing(consumer))
|