当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python asyncio.Server用法及代码示例


用法:

class asyncio.Server

Server 对象是异步上下文管理器。在async with 语句中使用时,保证在async with 语句完成时服务器对象已关闭并且不接受新连接:

srv = await loop.create_server(...)

async with srv:
    # some code

# At this point, srv is closed and no longer accepts new connections.

在 3.7 版中更改:从 Python 3.7 开始,服务器对象是一个异步上下文管理器。

相关用法


注:本文由纯净天空筛选整理自python.org大神的英文原创作品 asyncio.Server。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。