當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。