mirror of https://github.com/celery/kombu.git
11 lines
321 B
Python
11 lines
321 B
Python
from __future__ import annotations
|
|
|
|
from kombu import Connection
|
|
|
|
with Connection('amqp://guest:guest@localhost:5672//') as conn:
|
|
simple_queue = conn.SimpleQueue('simple_queue')
|
|
message = simple_queue.get(block=True, timeout=1)
|
|
print(f'Received: {message.payload}')
|
|
message.ack()
|
|
simple_queue.close()
|