distributed-computing/tasks/grenaderova-aa/lab_4/python4Lab/MainTask/Consumer_2.py
2023-12-18 16:32:53 +04:00

19 lines
599 B
Python

import pika
def process_message(ch, method, properties, body):
print(f"Получено сообщение: {body}")
print("Сообщение обработано")
connection = pika.BlockingConnection(pika.ConnectionParameters('localhost'))
channel = connection.channel()
result = channel.queue_declare(queue='', exclusive=True)
queue_name = result.method.queue
channel.queue_bind(exchange='Entities', queue=queue_name)
channel.basic_consume(queue=queue_name, on_message_callback=process_message, auto_ack=True)
print('Ожидание сообщений')
channel.start_consuming()