4

我正在尝试使用以下代码通过超时标记未来完成:

import asyncio


@asyncio.coroutine
def greet():
    while True:
        print('Hello World')
        yield from asyncio.sleep(1)

@asyncio.coroutine
def main():
    future = asyncio.async(greet())
    loop.call_later(3, lambda: future.set_result(True))
    yield from future
    print('Ready')

loop = asyncio.get_event_loop()
loop.run_until_complete(main())

"Timer" loop.call_later 在 3 秒后将结果设置为未来。它有效,但我也遇到了异常:

Hello World
Hello World
Hello World
Ready
Exception in callback <bound method Task._wakeup of Task(<greet>)<result=True>>(Future<result=None>,)
handle: Handle(<bound method Task._wakeup of Task(<greet>)<result=True>>, (Future<result=None>,))
Traceback (most recent call last):
  File "C:\Python33\lib\site-packages\asyncio\events.py", line 39, in _run
    self._callback(*self._args)
  File "C:\Python33\lib\site-packages\asyncio\tasks.py", line 337, in _wakeup
    self._step(value, None)
  File "C:\Python33\lib\site-packages\asyncio\tasks.py", line 267, in _step
    '_step(): already done: {!r}, {!r}, {!r}'.format(self, value, exc)
AssertionError: _step(): already done: Task(<greet>)<result=True>, None, None

这个 AssertionError 是什么意思?我做错了什么设置由loop.call_later完成的未来?

4

2 回答 2

3

什么原因导致异常:即使在调用greet后仍继续运行;future.set_result通过更改while Trueif True您将明白我的意思。

怎么用asyncio.Event

import asyncio


@asyncio.coroutine
def greet(stop):
    while not stop.is_set():
        print('Hello World')
        yield from asyncio.sleep(1)


@asyncio.coroutine
def main():
    stop = asyncio.Event()
    loop.call_later(3, stop.set)
    yield from asyncio.async(greet(stop))
    print('Ready')

loop = asyncio.get_event_loop()
loop.run_until_complete(main())
于 2014-05-24T03:23:35.813 回答
1

你不应该给future.set_result()自己打电话。事件循环在任务返回后设置未来的结果。

于 2014-05-24T08:01:16.993 回答