distributed-computing/tasks/plaksina-av/lab_4/pythontasks/tutorial2/worker.py
2023-12-16 01:46:18 +04:00

19 lines
644 B
Python

import pika
import time
connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost'))
channel = connection.channel()
channel.queue_declare(queue='milka', durable=True)
print(' [*] Ожидание сообщений. Для завершения CTRL+C')
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='milka', on_message_callback=callback)
channel.start_consuming()