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


Python asyncio.SelectorEventLoop用法及代碼示例


用法:

class asyncio.SelectorEventLoop

基於selectors 模塊的事件循環。

使用給定平台可用的最有效的selector。也可以手動配置要使用的確切選擇器實現:

import asyncio
import selectors

selector = selectors.SelectSelector()
loop = asyncio.SelectorEventLoop(selector)
asyncio.set_event_loop(loop)

可用性:Unix、Windows。

相關用法


注:本文由純淨天空篩選整理自python.org大神的英文原創作品 asyncio.SelectorEventLoop。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。