How to add a coroutine/task to the loop from a #39;blocking function#39; already running in a loop(如何将已在循环中运行的阻塞函数的协程/任务添加到循环中)
本文介绍了如何将已在循环中运行的阻塞函数的协程/任务添加到循环中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
希望下面的代码解释了我希望比问题标题做得更好的是什么。
import asyncio
import time
loop = asyncio.get_event_loop()
class Foo(object):
def __init__(self, num):
self.num = num
@property
def number(self):
# Somehow need to run get_number() in the loop.
number = self.get_number()
return number
@asyncio.coroutine
def get_number(self):
yield from loop.run_in_executor(None, time.sleep, self.num)
return self.num
@asyncio.coroutine
def runner(num):
print("getting Foo({})".format(num))
foo = Foo(num)
yield from asyncio.sleep(1)
print("accessing number property of Foo({})".format(num))
number = foo.number
print("Foo({}) number is {}".format(num, number))
tasks = [
asyncio.async(runner(3)),
asyncio.async(runner(1)),
]
go = loop.run_until_complete(asyncio.wait(tasks))
我不知道如何处理number
函数中的注释。我试过各种各样的方法,但实际上我只是"往墙上扔*,希望有东西能坚持下去"。
这是this question的后续内容。我想在不执行yield from
的情况下访问该属性,因为我需要从模板(例如mako)访问该属性,并且随处写入yield from
并不理想(考虑到mako可能正在阻塞,这甚至是不可能的)。在一个完美的世界里,我会用reify decorator运行所有这些。
如果我要使用yield from
,代码将非常简单。
class Foo(object):
def __init__(self, num):
self.num = num
@property
@asyncio.coroutine
def number(self):
yield from loop.run_in_executor(None, time.sleep, self.num)
return self.num
@asyncio.coroutine
def runner(num):
print("getting Foo({})".format(num))
foo = Foo(num)
yield from asyncio.sleep(1)
print("accessing number property of Foo({})".format(num))
number = yield from foo.number
print("Foo({}) number is {}".format(num, number))
#getting Foo(3)
#getting Foo(1)
#accessing number property of Foo(3)
#accessing number property of Foo(1)
#Foo(1) number is 1
#Foo(3) number is 3
我在该主题上找到this answer,但我看不到添加完成回调如何与我的工作流配合使用。
推荐答案
您所要求的是不可能的,因为当您在主线程中(您想要调用foo.number
而不使用Year)时,您需要显式地将控制权交还给主循环。这正是yield from
所做的。
否则,您需要在一个单独的线程中运行调用foo.number的函数,该线程将能够阻塞(不产生)并等待get_number
的结果,而不阻塞主循环
这篇关于如何将已在循环中运行的阻塞函数的协程/任务添加到循环中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:如何将已在循环中运行的阻塞函数的协程/任务添加到循环中
基础教程推荐
猜你喜欢
- 如何在Python中绘制多元函数? 2022-01-01
- Python 的 List 是如何实现的? 2022-01-01
- 如何在 Python 中检测文件是否为二进制(非文本)文 2022-01-01
- 症状类型错误:无法确定关系的真值 2022-01-01
- 使用 Google App Engine (Python) 将文件上传到 Google Cloud Storage 2022-01-01
- 将 YAML 文件转换为 python dict 2022-01-01
- 使 Python 脚本在 Windows 上运行而不指定“.py";延期 2022-01-01
- 使用Python匹配Stata加权xtil命令的确定方法? 2022-01-01
- 哪些 Python 包提供独立的事件系统? 2022-01-01
- 合并具有多索引的两个数据帧 2022-01-01