AbstractEventLoop方法create_server如何在asyncio的事件模块中工作

时间:2018-05-31 07:26:44

标签: python-3.x python-asyncio

enter image description here

AbstractEventLoop方法create_server如何在asyncio的事件模块中工作?

1 个答案:

答案 0 :(得分:2)

AbstractEventLoop不使用SelectorEventLoop,而是使用派生类:ProactorEventLoop(以及asyncio.get_event_loop() for Windows)。

您永远不会通过调用它的构造函数来实例化事件循环,但会使用asyncio.new_event_loop() / https://www.dropbox.com/s/dr1cit55idwi1m0/english_buisness_message.txt?dl=0

请查看asyncio/base_events.pyasyncio/selector_events.py,了解实际实施情况。