mirror of https://github.com/celery/kombu.git
33 lines
979 B
ReStructuredText
33 lines
979 B
ReStructuredText
|
|
|
|
.. code-block:: python
|
|
|
|
from kombu.connection Connection
|
|
from kombu.messaging import Exchange, Binding, Consumer, Producer
|
|
|
|
media_exchange = Exchange("media", "direct", durable=True)
|
|
video_binding = Binding("video", exchange=media_exchange, key="video")
|
|
|
|
# connections/channels
|
|
connection = Connection("localhost", "guest", "guest", "/")
|
|
channel = connection.channel()
|
|
|
|
# produce
|
|
producer = Producer(channel, exchange=media_exchange, serializer="json")
|
|
producer.publish({"name": "/tmp/lolcat1.avi", "size": 1301013})
|
|
|
|
# consume
|
|
consumer = Consumer(channel, video_binding)
|
|
consumer.register_callback(process_media)
|
|
consumer.consume()
|
|
|
|
while True:
|
|
connection.drain_events()
|
|
|
|
|
|
# consumerset:
|
|
video_binding = Binding("video", exchange=media_exchange, key="video")
|
|
image_binding = Binding("image", exchange=media_exchange, key="image")
|
|
|
|
consumer = Consumer(channel, [video_binding, image_binding])
|