asyncio.AbstractEventLoop.is_running()

AbstractEventLoop.is_running() Returns running status of event loop.

asyncio.AbstractEventLoop.is_closed()

AbstractEventLoop.is_closed() Returns True if the event loop was closed. New in version 3.4.2.

asyncio.AbstractEventLoop.get_task_factory()

AbstractEventLoop.get_task_factory() Return a task factory, or None if the default one is in use. New in version 3.4.4.

asyncio.AbstractEventLoop.get_exception_handler()

AbstractEventLoop.get_exception_handler() Return the exception handler, or None if the default one is in use. New in version 3.5.2.

asyncio.AbstractEventLoop.get_debug()

AbstractEventLoop.get_debug() Get the debug mode (bool) of the event loop. The default value is True if the environment variable PYTHONASYNCIODEBUG is set to a non-empty string, False otherwise. New in version 3.4.2.

asyncio.AbstractEventLoop.getnameinfo()

coroutine AbstractEventLoop.getnameinfo(sockaddr, flags=0) This method is a coroutine, similar to socket.getnameinfo() function but non-blocking.

asyncio.AbstractEventLoop.getaddrinfo()

coroutine AbstractEventLoop.getaddrinfo(host, port, *, family=0, type=0, proto=0, flags=0) This method is a coroutine, similar to socket.getaddrinfo() function but non-blocking.

asyncio.AbstractEventLoop.default_exception_handler()

AbstractEventLoop.default_exception_handler(context) Default exception handler. This is called when an exception occurs and no exception handler is set, and can be called by a custom exception handler that wants to defer to the default behavior. context parameter has the same meaning as in call_exception_handler().

asyncio.AbstractEventLoop.create_unix_server()

coroutine AbstractEventLoop.create_unix_server(protocol_factory, path=None, *, sock=None, backlog=100, ssl=None) Similar to AbstractEventLoop.create_server(), but specific to the socket family AF_UNIX. This method is a coroutine. Availability: UNIX.

asyncio.AbstractEventLoop.create_unix_connection()

coroutine AbstractEventLoop.create_unix_connection(protocol_factory, path, *, ssl=None, sock=None, server_hostname=None) Create UNIX connection: socket family AF_UNIX, socket type SOCK_STREAM. The AF_UNIX socket family is used to communicate between processes on the same machine efficiently. This method is a coroutine which will try to establish the connection in the background. When successful, the coroutine returns a (transport, protocol) pair. See the AbstractEventLoop.create_connection()