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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。