mirror of https://github.com/celery/kombu.git
30 lines
709 B
Python
30 lines
709 B
Python
#!/usr/bin/env python
|
|
|
|
from kombu import Connection, Consumer, Exchange, Producer, Queue
|
|
from kombu.asynchronous import Hub
|
|
|
|
hub = Hub()
|
|
exchange = Exchange('asynt')
|
|
queue = Queue('asynt', exchange, 'asynt')
|
|
|
|
|
|
def send_message(conn):
|
|
producer = Producer(conn)
|
|
producer.publish('hello world', exchange=exchange, routing_key='asynt')
|
|
print('message sent')
|
|
|
|
|
|
def on_message(message):
|
|
print(f'received: {message.body!r}')
|
|
message.ack()
|
|
hub.stop() # <-- exit after one message
|
|
|
|
|
|
if __name__ == '__main__':
|
|
conn = Connection('amqp://')
|
|
conn.register_with_event_loop(hub)
|
|
|
|
with Consumer(conn, [queue], on_message=on_message):
|
|
send_message(conn)
|
|
hub.run_forever()
|