def wait(self, timeout=None):
"""Block until the internal flag is true.
Returns a Future, which raises `tornado.gen.TimeoutError` after a
timeout.
"""
if timeout is None:
return self._future
else:
return gen.with_timeout(timeout, self._future)
locks.py 文件源码
python
阅读 31
收藏 0
点赞 0
评论 0
评论列表
文章目录