| 
									
										
										
										
											2014-07-08 23:42:38 +02:00
										 |  |  | .. currentmodule:: asyncio
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Event loops
 | 
					
						
							|  |  |  | ===========
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-25 17:03:51 -06:00
										 |  |  | **Source code:** :source:`Lib/asyncio/events.py`
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-08 23:42:38 +02:00
										 |  |  | Event loop functions
 | 
					
						
							|  |  |  | --------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The following functions are convenient shortcuts to accessing the methods of the
 | 
					
						
							|  |  |  | global policy. Note that this provides access to the default policy, unless an
 | 
					
						
							|  |  |  | alternative policy was set by calling :func:`set_event_loop_policy` earlier in
 | 
					
						
							|  |  |  | the execution of the process.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. function:: get_event_loop()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Equivalent to calling ``get_event_loop_policy().get_event_loop()``.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. function:: set_event_loop(loop)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Equivalent to calling ``get_event_loop_policy().set_event_loop(loop)``.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. function:: new_event_loop()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Equivalent to calling ``get_event_loop_policy().new_event_loop()``.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-11 10:07:44 -05:00
										 |  |  | .. function:: get_running_loop()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Return the running event loop in the current OS thread.  If there
 | 
					
						
							|  |  |  |    is no running event loop a :exc:`RuntimeError` is raised.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    .. versionadded:: 3.7
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-08 23:42:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-11 12:13:39 +02:00
										 |  |  | .. _asyncio-event-loops:
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-08 23:42:38 +02:00
										 |  |  | Available event loops
 | 
					
						
							|  |  |  | ---------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | asyncio currently provides two implementations of event loops:
 | 
					
						
							|  |  |  | :class:`SelectorEventLoop` and :class:`ProactorEventLoop`.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. class:: SelectorEventLoop
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Event loop based on the :mod:`selectors` module. Subclass of
 | 
					
						
							| 
									
										
										
										
											2016-08-08 09:41:21 -07:00
										 |  |  |    :class:`AbstractEventLoop`.
 | 
					
						
							| 
									
										
										
										
											2014-07-08 23:42:38 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |    Use the most efficient selector available on the platform.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-31 14:47:37 +02:00
										 |  |  |    On Windows, only sockets are supported (ex: pipes are not supported):
 | 
					
						
							|  |  |  |    see the `MSDN documentation of select
 | 
					
						
							| 
									
										
										
										
											2016-02-26 19:37:12 +01:00
										 |  |  |    <https://msdn.microsoft.com/en-us/library/windows/desktop/ms740141%28v=vs.85%29.aspx>`_.
 | 
					
						
							| 
									
										
										
										
											2014-08-31 14:47:37 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-08 23:42:38 +02:00
										 |  |  | .. class:: ProactorEventLoop
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Proactor event loop for Windows using "I/O Completion Ports" aka IOCP.
 | 
					
						
							| 
									
										
										
										
											2016-08-08 09:41:21 -07:00
										 |  |  |    Subclass of :class:`AbstractEventLoop`.
 | 
					
						
							| 
									
										
										
										
											2014-07-08 23:42:38 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |    Availability: Windows.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    .. seealso::
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       `MSDN documentation on I/O Completion Ports
 | 
					
						
							| 
									
										
										
										
											2016-02-26 19:37:12 +01:00
										 |  |  |       <https://msdn.microsoft.com/en-us/library/windows/desktop/aa365198%28v=vs.85%29.aspx>`_.
 | 
					
						
							| 
									
										
										
										
											2014-07-08 23:42:38 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | Example to use a :class:`ProactorEventLoop` on Windows::
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-02 09:15:47 -08:00
										 |  |  |     import asyncio, sys
 | 
					
						
							| 
									
										
										
										
											2014-07-08 23:42:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-02 09:15:47 -08:00
										 |  |  |     if sys.platform == 'win32':
 | 
					
						
							| 
									
										
										
										
											2014-07-08 23:42:38 +02:00
										 |  |  |         loop = asyncio.ProactorEventLoop()
 | 
					
						
							|  |  |  |         asyncio.set_event_loop(loop)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-11 12:13:39 +02:00
										 |  |  | .. _asyncio-platform-support:
 | 
					
						
							| 
									
										
										
										
											2014-07-08 23:42:38 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | Platform support
 | 
					
						
							|  |  |  | ----------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The :mod:`asyncio` module has been designed to be portable, but each platform
 | 
					
						
							|  |  |  | still has subtle differences and may not support all :mod:`asyncio` features.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Windows
 | 
					
						
							|  |  |  | ^^^^^^^
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Common limits of Windows event loops:
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-08 09:41:21 -07:00
										 |  |  | - :meth:`~AbstractEventLoop.create_unix_connection` and
 | 
					
						
							|  |  |  |   :meth:`~AbstractEventLoop.create_unix_server` are not supported: the socket
 | 
					
						
							| 
									
										
										
										
											2014-07-11 12:13:39 +02:00
										 |  |  |   family :data:`socket.AF_UNIX` is specific to UNIX
 | 
					
						
							| 
									
										
										
										
											2016-08-08 09:41:21 -07:00
										 |  |  | - :meth:`~AbstractEventLoop.add_signal_handler` and
 | 
					
						
							|  |  |  |   :meth:`~AbstractEventLoop.remove_signal_handler` are not supported
 | 
					
						
							| 
									
										
										
										
											2014-07-11 12:13:39 +02:00
										 |  |  | - :meth:`EventLoopPolicy.set_child_watcher` is not supported.
 | 
					
						
							|  |  |  |   :class:`ProactorEventLoop` supports subprocesses. It has only one
 | 
					
						
							|  |  |  |   implementation to watch child processes, there is no need to configure it.
 | 
					
						
							| 
									
										
										
										
											2014-07-08 23:42:38 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | :class:`SelectorEventLoop` specific limits:
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-09 15:59:44 +01:00
										 |  |  | - :class:`~selectors.SelectSelector` is used which only supports sockets
 | 
					
						
							|  |  |  |   and is limited to 512 sockets.
 | 
					
						
							| 
									
										
										
										
											2016-08-08 09:41:21 -07:00
										 |  |  | - :meth:`~AbstractEventLoop.add_reader` and :meth:`~AbstractEventLoop.add_writer` only
 | 
					
						
							| 
									
										
										
										
											2014-07-08 23:42:38 +02:00
										 |  |  |   accept file descriptors of sockets
 | 
					
						
							| 
									
										
										
										
											2014-07-11 12:13:39 +02:00
										 |  |  | - Pipes are not supported
 | 
					
						
							| 
									
										
										
										
											2016-08-08 09:41:21 -07:00
										 |  |  |   (ex: :meth:`~AbstractEventLoop.connect_read_pipe`,
 | 
					
						
							|  |  |  |   :meth:`~AbstractEventLoop.connect_write_pipe`)
 | 
					
						
							| 
									
										
										
										
											2014-07-11 12:13:39 +02:00
										 |  |  | - :ref:`Subprocesses <asyncio-subprocess>` are not supported
 | 
					
						
							| 
									
										
										
										
											2016-08-08 09:41:21 -07:00
										 |  |  |   (ex: :meth:`~AbstractEventLoop.subprocess_exec`,
 | 
					
						
							|  |  |  |   :meth:`~AbstractEventLoop.subprocess_shell`)
 | 
					
						
							| 
									
										
										
										
											2014-07-08 23:42:38 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | :class:`ProactorEventLoop` specific limits:
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-08 09:41:21 -07:00
										 |  |  | - :meth:`~AbstractEventLoop.create_datagram_endpoint` (UDP) is not supported
 | 
					
						
							|  |  |  | - :meth:`~AbstractEventLoop.add_reader` and :meth:`~AbstractEventLoop.add_writer` are
 | 
					
						
							| 
									
										
										
										
											2014-07-08 23:42:38 +02:00
										 |  |  |   not supported
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The resolution of the monotonic clock on Windows is usually around 15.6 msec.
 | 
					
						
							| 
									
										
										
										
											2014-07-11 12:13:39 +02:00
										 |  |  | The best resolution is 0.5 msec. The resolution depends on the hardware
 | 
					
						
							|  |  |  | (availability of `HPET
 | 
					
						
							| 
									
										
										
										
											2016-02-26 19:37:12 +01:00
										 |  |  | <https://en.wikipedia.org/wiki/High_Precision_Event_Timer>`_) and on the Windows
 | 
					
						
							| 
									
										
										
										
											2014-07-11 12:13:39 +02:00
										 |  |  | configuration. See :ref:`asyncio delayed calls <asyncio-delayed-calls>`.
 | 
					
						
							| 
									
										
										
										
											2014-07-08 23:42:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-14 00:30:22 +01:00
										 |  |  | .. versionchanged:: 3.5
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    :class:`ProactorEventLoop` now supports SSL.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-08 23:42:38 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | Mac OS X
 | 
					
						
							|  |  |  | ^^^^^^^^
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Character devices like PTY are only well supported since Mavericks (Mac OS
 | 
					
						
							|  |  |  | 10.9). They are not supported at all on Mac OS 10.5 and older.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | On Mac OS 10.6, 10.7 and 10.8, the default event loop is
 | 
					
						
							|  |  |  | :class:`SelectorEventLoop` which uses :class:`selectors.KqueueSelector`.
 | 
					
						
							|  |  |  | :class:`selectors.KqueueSelector` does not support character devices on these
 | 
					
						
							|  |  |  | versions.  The :class:`SelectorEventLoop` can be used with
 | 
					
						
							|  |  |  | :class:`~selectors.SelectSelector` or :class:`~selectors.PollSelector` to
 | 
					
						
							|  |  |  | support character devices on these versions of Mac OS X. Example::
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     import asyncio
 | 
					
						
							|  |  |  |     import selectors
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     selector = selectors.SelectSelector()
 | 
					
						
							|  |  |  |     loop = asyncio.SelectorEventLoop(selector)
 | 
					
						
							|  |  |  |     asyncio.set_event_loop(loop)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Event loop policies and the default policy
 | 
					
						
							|  |  |  | ------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Event loop management is abstracted with a *policy* pattern, to provide maximal
 | 
					
						
							|  |  |  | flexibility for custom platforms and frameworks. Throughout the execution of a
 | 
					
						
							|  |  |  | process, a single global policy object manages the event loops available to the
 | 
					
						
							|  |  |  | process based on the calling context. A policy is an object implementing the
 | 
					
						
							|  |  |  | :class:`AbstractEventLoopPolicy` interface.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | For most users of :mod:`asyncio`, policies never have to be dealt with
 | 
					
						
							| 
									
										
										
										
											2017-11-07 10:26:32 +01:00
										 |  |  | explicitly, since the default global policy is sufficient (see below).
 | 
					
						
							| 
									
										
										
										
											2014-07-08 23:42:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 10:26:32 +01:00
										 |  |  | The module-level functions
 | 
					
						
							| 
									
										
										
										
											2014-07-08 23:42:38 +02:00
										 |  |  | :func:`get_event_loop` and :func:`set_event_loop` provide convenient access to
 | 
					
						
							|  |  |  | event loops managed by the default policy.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-28 13:58:28 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-08 23:42:38 +02:00
										 |  |  | Event loop policy interface
 | 
					
						
							|  |  |  | ---------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | An event loop policy must implement the following interface:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. class:: AbstractEventLoopPolicy
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-28 13:58:28 +01:00
										 |  |  |    Event loop policy.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-08 23:42:38 +02:00
										 |  |  |    .. method:: get_event_loop()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-28 13:58:28 +01:00
										 |  |  |       Get the event loop for the current context.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-08 09:41:21 -07:00
										 |  |  |       Returns an event loop object implementing the :class:`AbstractEventLoop`
 | 
					
						
							| 
									
										
										
										
											2014-11-28 13:58:28 +01:00
										 |  |  |       interface.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       Raises an exception in case no event loop has been set for the current
 | 
					
						
							|  |  |  |       context and the current policy does not specify to create one. It must
 | 
					
						
							|  |  |  |       never return ``None``.
 | 
					
						
							| 
									
										
										
										
											2014-07-08 23:42:38 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |    .. method:: set_event_loop(loop)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-28 13:58:28 +01:00
										 |  |  |       Set the event loop for the current context to *loop*.
 | 
					
						
							| 
									
										
										
										
											2014-07-08 23:42:38 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |    .. method:: new_event_loop()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-28 13:58:28 +01:00
										 |  |  |       Create and return a new event loop object according to this policy's
 | 
					
						
							|  |  |  |       rules.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       If there's need to set this loop as the event loop for the current
 | 
					
						
							|  |  |  |       context, :meth:`set_event_loop` must be called explicitly.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-08 23:42:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 10:26:32 +01:00
										 |  |  | The default policy defines context as the current thread, and manages an event
 | 
					
						
							| 
									
										
										
										
											2017-12-10 17:34:59 +00:00
										 |  |  | loop per thread that interacts with :mod:`asyncio`. An exception to this rule
 | 
					
						
							|  |  |  | happens when :meth:`~AbstractEventLoopPolicy.get_event_loop` is called from a
 | 
					
						
							|  |  |  | running future/coroutine, in which case it will return the current loop
 | 
					
						
							|  |  |  | running that future/coroutine.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | If the current thread doesn't already have an event loop associated with it,
 | 
					
						
							|  |  |  | the default policy's :meth:`~AbstractEventLoopPolicy.get_event_loop` method
 | 
					
						
							|  |  |  | creates one when called from the main thread, but raises :exc:`RuntimeError`
 | 
					
						
							|  |  |  | otherwise.
 | 
					
						
							| 
									
										
										
										
											2017-11-07 10:26:32 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-08 23:42:38 +02:00
										 |  |  | Access to the global loop policy
 | 
					
						
							|  |  |  | --------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. function:: get_event_loop_policy()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Get the current event loop policy.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. function:: set_event_loop_policy(policy)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Set the current event loop policy. If *policy* is ``None``, the default
 | 
					
						
							|  |  |  |    policy is restored.
 | 
					
						
							| 
									
										
										
										
											2017-11-07 10:26:32 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Customizing the event loop policy
 | 
					
						
							|  |  |  | ---------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | To implement a new event loop policy, it is recommended you subclass the
 | 
					
						
							|  |  |  | concrete default event loop policy :class:`DefaultEventLoopPolicy`
 | 
					
						
							|  |  |  | and override the methods for which you want to change behavior, for example::
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     class MyEventLoopPolicy(asyncio.DefaultEventLoopPolicy):
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         def get_event_loop(self):
 | 
					
						
							|  |  |  |             """Get the event loop.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             This may be None or an instance of EventLoop.
 | 
					
						
							|  |  |  |             """
 | 
					
						
							|  |  |  |             loop = super().get_event_loop()
 | 
					
						
							|  |  |  |             # Do something with loop ...
 | 
					
						
							|  |  |  |             return loop
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     asyncio.set_event_loop_policy(MyEventLoopPolicy())
 |