select.kevent(ident, filter=KQ_FILTER_READ, flags=KQ_EV_ADD, fflags=0, data=0, udata=0) (Only supported on BSD.) Returns a kernel
AbstractEventLoop.is_closed() Returns True if the event loop was closed.
AbstractEventLoop.call_exception_handler(context) Call the current event loop exception handler.
coroutine AbstractEventLoop.create_connection(protocol_factory, host=None, port=None, *, ssl=None, family=0, proto=0, flags=0, sock=None, local_addr=None, server_hostname=None)
coroutine AbstractEventLoop.sock_sendall(sock, data) Send data to the socket. Modeled after blocking
coroutine wait_for(predicate) Wait until a predicate becomes true. The predicate should be a
AbstractEventLoop.add_signal_handler(signum, callback, *args) Add a handler for a signal. Raise
is_closing(self) Return True if the transport is closing or is closed.
@asyncio.coroutine Decorator to mark generator-based coroutines. This enables the generator use yield from to call
AbstractEventLoop.close() Close the event loop. The loop must not be running. Pending callbacks will be lost.
Page 27 of 28