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

广播模式下的生产者与消费者fanout模式

时间:2018-03-27 01:55:40      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:import   tar   ram   min   localhost   回调函数   必须   管道   bind   

生产者

#coding=utf-8
import pika
import sys
connection = pika.BlockingConnection(pika.ConnectionParameters(‘localhost‘))  #建立socket连接可以加各种参数,端口,用户名,等
channel = connection.channel()  #声明一个管道

channel.exchange_declare(exchange=‘logs‘,exchange_type=‘fanout‘)   #声明广播
channel.basic_publish(exchange=‘logs‘,routing_key=‘‘,
                                   body = ‘hellow,word‘,#队列的名字、消息内容

                                   )

print ‘send hellow,word‘
connection.close()

 消费者

#coding=utf-8
import pika
import time
connection = pika.BlockingConnection(pika.ConnectionParameters(host = ‘localhost‘))
channel = connection.channel()
channel.exchange_declare(exchange=‘logs‘
exchange_type=‘fanout‘) #直接加位置参数会出错,必须指定参数 result = channel.queue_declare(exclusive=True)#生成一个随机队列,用完之后删除 queue_name = result.method.queue channel.queue_bind(exchange=‘logs‘,queue=queue_name) def callback(ch,method,properties,body): #回调函数 print ‘收到消息:‘,body time.sleep(30) print ‘消息处理完毕:‘, body channel.basic_consume(callback,queue=queue_name #no_ack=True 需要客户端确认,如果正在处理消息的时候客户端挂掉就会转到下一个客户端,会等待消息完整的处理完 )#如果收到消息就调用callback来处理消息 print ‘等待接收消息。。。。。‘ channel.start_consuming() #循环持续运行下去 #消息持久化

 

广播模式下的生产者与消费者fanout模式

标签:import   tar   ram   min   localhost   回调函数   必须   管道   bind   

原文地址:https://www.cnblogs.com/qiangayz/p/8654751.html

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