2010-11-24 11:31:20 +00:00
|
|
|
"""
|
|
|
|
Example of simple consumer that waits for a single message, acknowledges it
|
|
|
|
and exits.
|
|
|
|
"""
|
2012-06-24 15:32:17 +00:00
|
|
|
|
2011-09-07 14:21:38 +00:00
|
|
|
from __future__ import with_statement
|
2010-11-24 11:31:20 +00:00
|
|
|
|
2012-06-24 15:32:17 +00:00
|
|
|
from kombu import Connection, Exchange, Queue, Consumer, eventloop
|
2010-11-24 11:31:20 +00:00
|
|
|
from pprint import pformat
|
|
|
|
|
|
|
|
#: By default messages sent to exchanges are persistent (delivery_mode=2),
|
|
|
|
#: and queues and exchanges are durable.
|
2012-06-24 15:32:17 +00:00
|
|
|
exchange = Exchange('kombu_demo', type='direct')
|
|
|
|
queue = Queue('kombu_demo', exchange, routing_key='kombu_demo')
|
2010-11-24 11:31:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
def pretty(obj):
|
|
|
|
return pformat(obj, indent=4)
|
|
|
|
|
2010-11-30 18:58:04 +00:00
|
|
|
|
2010-11-24 11:31:20 +00:00
|
|
|
#: This is the callback applied when a message is received.
|
|
|
|
def handle_message(body, message):
|
2012-06-24 15:32:17 +00:00
|
|
|
print('Received message: %r' % (body, ))
|
|
|
|
print(' properties:\n%s' % (pretty(message.properties), ))
|
|
|
|
print(' delivery_info:\n%s' % (pretty(message.delivery_info), ))
|
2010-11-24 11:31:20 +00:00
|
|
|
message.ack()
|
|
|
|
|
2012-06-24 15:32:17 +00:00
|
|
|
#: Create a connection and a channel.
|
|
|
|
#: If hostname, userid, password and virtual_host is not specified
|
|
|
|
#: the values below are the default, but listed here so it can
|
|
|
|
#: be easily changed.
|
|
|
|
with Connection('amqp://guest:guest@localhost:5672//') as connection:
|
|
|
|
|
2011-09-07 14:21:38 +00:00
|
|
|
#: Create consumer using our callback and queue.
|
|
|
|
#: Second argument can also be a list to consume from
|
|
|
|
#: any number of queues.
|
2012-06-24 15:32:17 +00:00
|
|
|
with Consumer(connection, queue, callbacks=[handle_message]):
|
|
|
|
|
2011-09-07 14:21:38 +00:00
|
|
|
#: This waits for a single event. Note that this event may not
|
|
|
|
#: be a message, or a message that is to be delivered to the consumers
|
|
|
|
#: channel, but any event received on the connection.
|
2012-06-24 15:32:17 +00:00
|
|
|
eventloop(connection, limit=1, timeout=10.0)
|