码迷,mamicode.com
首页 > 其他好文 > 详细

rabbitMQ 的简单模式

时间:2019-12-07 01:09:11      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:pytho   ann   wait   数据   rabbit   env   ges   对象   hello   

生产者:

# !/usr/bin/env python
# -*- coding: utf-8 -*-

import pika

# 创建连接对象
connection = pika.BlockingConnection(pika.ConnectionParameters(host=‘localhost‘))
# 获取频道对象
channel = connection.channel()

# 创建队列
channel.queue_declare(queue=‘hello‘)

# 向队列插入数据
channel.basic_publish(exchange=‘‘,
                      routing_key=‘hello‘,
                      body=‘Hello 12334!‘)

print("[x] Sent ‘生产者发送消息‘")
connection.close()

  

消费者:

# !/usr/bin/env python
# -*- coding: utf-8 -*-

import pika

connection = pika.BlockingConnection(pika.ConnectionParameters(host=‘localhost‘))
channel = connection.channel()

# 声明队列
channel.queue_declare(queue=‘hello‘)

def callback(ch, method, properties, body):

    print(" [x] Received %s" % body)
    ch.basic_ack(delivery_tag=method.delivery_tag)   # 应答信号

channel.basic_consume(queue=‘hello‘,
                      on_message_callback=callback,
                      # auto_ack=True)       # 无应答模式
                      auto_ack=False)     # 应答模式

print(‘ [x] Waiting for messages. To exit press CTRL+C‘)
channel.start_consuming()

  

rabbitMQ 的简单模式

标签:pytho   ann   wait   数据   rabbit   env   ges   对象   hello   

原文地址:https://www.cnblogs.com/eliwen/p/12000153.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!