python中利用队列asyncio.Queue进行通讯详解


Posted in Python onSeptember 10, 2017

前言

本文主要给大家介绍了关于python用队列asyncio.Queue通讯的相关内容,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍吧。

asyncio.Queue与其它队列是一样的,都是先进先出,它是为协程定义的

例子如下:

import asyncio 
 
 
async def consumer(n, q): 
 print('consumer {}: starting'.format(n)) 
 while True: 
  print('consumer {}: waiting for item'.format(n)) 
  item = await q.get() 
  print('consumer {}: has item {}'.format(n, item)) 
  if item is None: 
   # None is the signal to stop. 
   q.task_done() 
   break 
  else: 
   await asyncio.sleep(0.01 * item) 
   q.task_done() 
 print('consumer {}: ending'.format(n)) 
 
 
async def producer(q, num_workers): 
 print('producer: starting') 
 # Add some numbers to the queue to simulate jobs 
 for i in range(num_workers * 3): 
  await q.put(i) 
  print('producer: added task {} to the queue'.format(i)) 
 # Add None entries in the queue 
 # to signal the consumers to exit 
 print('producer: adding stop signals to the queue') 
 for i in range(num_workers): 
  await q.put(None) 
 print('producer: waiting for queue to empty') 
 await q.join() 
 print('producer: ending') 
 
 
async def main(loop, num_consumers): 
 # Create the queue with a fixed size so the producer 
 # will block until the consumers pull some items out. 
 q = asyncio.Queue(maxsize=num_consumers) 
 
 # Scheduled the consumer tasks. 
 consumers = [ 
  loop.create_task(consumer(i, q)) 
  for i in range(num_consumers) 
 ] 
 
 # Schedule the producer task. 
 prod = loop.create_task(producer(q, num_consumers)) 
 
 # Wait for all of the coroutines to finish. 
 await asyncio.wait(consumers + [prod]) 
 
 
event_loop = asyncio.get_event_loop() 
try: 
 event_loop.run_until_complete(main(event_loop, 2)) 
finally: 
 event_loop.close()

输出如下:

consumer 0: starting
consumer 0: waiting for item
consumer 1: starting
consumer 1: waiting for item
producer: starting
producer: added task 0 to the queue
producer: added task 1 to the queue
consumer 0: has item 0
consumer 1: has item 1
producer: added task 2 to the queue
producer: added task 3 to the queue
consumer 0: waiting for item
consumer 0: has item 2
producer: added task 4 to the queue
consumer 1: waiting for item
consumer 1: has item 3
producer: added task 5 to the queue
producer: adding stop signals to the queue
consumer 0: waiting for item
consumer 0: has item 4
consumer 1: waiting for item
consumer 1: has item 5
producer: waiting for queue to empty
consumer 0: waiting for item
consumer 0: has item None
consumer 0: ending
consumer 1: waiting for item
consumer 1: has item None
consumer 1: ending
producer: ending

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对三水点靠木的支持。

Python 相关文章推荐
python BeautifulSoup使用方法详解
Nov 21 Python
Python的Scrapy爬虫框架简单学习笔记
Jan 20 Python
Python数据可视化之画图
Jan 15 Python
详解Python3中ceil()函数用法
Feb 19 Python
75条笑死人的知乎神回复,用60行代码就爬完了
May 06 Python
Python 3 实现定义跨模块的全局变量和使用教程
Jul 07 Python
python中return的返回和执行实例
Dec 24 Python
python 消除 futureWarning问题的解决
Dec 25 Python
Keras之fit_generator与train_on_batch用法
Jun 17 Python
Python opencv缺陷检测的实现及问题解决
Apr 24 Python
Pytorch 统计模型参数量的操作 param.numel()
May 13 Python
如何在pycharm中快捷安装pip命令(如pygame)
May 31 Python
Python上下文管理器和with块详解
Sep 09 #Python
Python使用asyncio包处理并发详解
Sep 09 #Python
Python协程的用法和例子详解
Sep 09 #Python
python利用dir函数查看类中所有成员函数示例代码
Sep 08 #Python
Python使用回溯法子集树模板解决爬楼梯问题示例
Sep 08 #Python
Python使用回溯法子集树模板获取最长公共子序列(LCS)的方法
Sep 08 #Python
python中实现指定时间调用函数示例代码
Sep 08 #Python
You might like
PHPMailer的主要功能特点和简单使用说明
2014/02/17 PHP
php通过文件流方式复制文件的方法
2015/03/13 PHP
Centos下升级php5.2到php5.4全记录(编译安装)
2015/04/03 PHP
PHP基于工厂模式实现的计算器实例
2015/07/16 PHP
thinkPHP基于ajax实现的菜单与分页示例
2016/07/12 PHP
YII2 实现多语言配置的方法分享
2017/01/11 PHP
JQUBar 基于JQUERY的柱状图插件
2010/11/23 Javascript
关于用Jquery的height()、width()计算动态插入的IMG标签的宽高的问题
2010/12/08 Javascript
JS使用cookie设置样式的方法
2016/06/30 Javascript
总结十个Angular.js由浅入深的面试问题
2016/08/26 Javascript
jQuery插件WebUploader实现文件上传
2016/11/07 Javascript
探讨AngularJs中ui.route的简单应用
2016/11/16 Javascript
移动端点击态处理的三种实现方式
2017/01/12 Javascript
微信小程序checkbox组件使用详解
2018/01/31 Javascript
JS实现图片上传多次上传同一张不生效的处理方法
2018/08/06 Javascript
vue自动化路由的实现代码
2019/09/30 Javascript
Javascript生成器(Generator)的介绍与使用
2021/01/31 Javascript
[12:36]《DOTA2》国服注册与激活指南全攻略
2013/04/28 DOTA
wxpython 最小化到托盘与欢迎图片的实现方法
2014/06/09 Python
简单学习Python多进程Multiprocessing
2017/08/29 Python
python里dict变成list实例方法
2019/06/26 Python
django云端留言板实例详解
2019/07/22 Python
浅谈pytorch、cuda、python的版本对齐问题
2020/01/15 Python
Pytorch中.new()的作用详解
2020/02/18 Python
Pandas时间序列基础详解(转换,索引,切片)
2020/02/26 Python
Python垃圾回收机制三种实现方法
2020/04/27 Python
Python中socket网络通信是干嘛的
2020/05/27 Python
关于Python3的import问题(pycharm可以运行命令行import错误)
2020/11/18 Python
欧姆龙医疗保健与医疗产品:Omron Healthcare
2020/02/10 全球购物
世界上最大的皮肤科医生拥有和经营的美容网站:LovelySkin
2021/01/03 全球购物
什么是命名空间(NameSpace)
2015/11/24 面试题
洗煤厂厂长岗位职责
2014/01/03 职场文书
行政内勤岗位职责
2014/04/07 职场文书
年终工作总结范文2014
2014/11/27 职场文书
《分一些蚊子进来》读后感3篇
2020/01/09 职场文书
Ruby序列化和持久化存储 Marshal和Pstore介绍
2022/04/18 Ruby