当前位置:
首页 > Python基础教程 >
-
Python3标准库:asyncio异步I/O、事件循环和并发工具(7)
与Lock一样,coro1()和coro2()会等待设置事件。区别是一旦事件状态改变,它们便可以立即启动,并且它们不需要得到事件对象上的唯一的锁。
1.7.3 条件
Condition的做法与Event类似,只不过不是通知所有等待的协程,被唤醒的等待协程的数目由notify()的一个参数控制。
- import asyncio
- async def consumer(condition, n):
- async with condition:
- print('consumer {} is waiting'.format(n))
- await condition.wait()
- print('consumer {} triggered'.format(n))
- print('ending consumer {}'.format(n))
- async def manipulate_condition(condition):
- print('starting manipulate_condition')
- # pause to let consumers start
- await asyncio.sleep(0.1)
- for i in range(1, 3):
- async with condition:
- print('notifying {} consumers'.format(i))
- condition.notify(n=i)
- await asyncio.sleep(0.1)
- async with condition:
- print('notifying remaining consumers')
- condition.notify_all()
- print('ending manipulate_condition')
- async def main(loop):
- # Create a condition
- condition = asyncio.Condition()
- # Set up tasks watching the condition
- consumers = [
- consumer(condition, i)
- for i in range(5)
- ]
- # Schedule a task to manipulate the condition variable
- loop.create_task(manipulate_condition(condition))
- # Wait for the consumers to be done
- await asyncio.wait(consumers)
- event_loop = asyncio.get_event_loop()
- try:
- result = event_loop.run_until_complete(main(event_loop))
- finally:
- event_loop.close()
这个例子启动Condition的5个消费者。它们分别使用wait()方法来等待通知让它继续。manipulate_condition()通知一个消费者,再通知两个消费者,然后通知所有其余的消费者。
1.7.4 队列
asyncio.Queue为协程提供了一个先进先出的数据结构,这与线程的queue.Queue或进程的multiprocessing.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
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式