distributed-computing/tasks/melnikov-ky/lab_4/Tut2/worker.py

19 lines
617 B
Python
Raw Normal View History

2023-12-18 16:21:58 +04:00
import pika
import time
connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost'))
channel = connection.channel()
channel.queue_declare(queue='melnikov2', durable=True)
print(' [*] Ожидание сообщений.')
def callback(ch, method, properties, body):
print(f" [x] Получено сообщение: {body.decode()}")
time.sleep(body.count(b'.'))
print(" [x] Выполнено")
ch.basic_ack(delivery_tag=method.delivery_tag)
channel.basic_qos(prefetch_count=1)
channel.basic_consume(queue='melnikov2', on_message_callback=callback)
channel.start_consuming()