You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/source/hubs.rst
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,13 @@ A hub forms the basis of Eventlet's event loop, which dispatches I/O events and
7
7
8
8
Eventlet has multiple hub implementations, and when you start using it, it tries to select the best hub implementation for your system. The hubs that it supports are (in order of preference):
9
9
10
+
**asyncio**
11
+
|Asyncio based hub. Run Eventlet code in an Asyncio eventloop.
12
+
|By using this hub, Asyncio and Eventlet can be run the same thread in the same process.
13
+
|We discourage new Eventlet projects.
14
+
|We encourage existing Eventlet projects to migrate from Eventlet to Asyncio.
15
+
|This hub allow you incremental and smooth migration.
16
+
|See the `migration guide <https://eventlet.readthedocs.io/en/latest/migration.html>`_ for further details.
0 commit comments