AbstractEventLoop.set_task_factory(factory) Set a task factory that will be used by AbstractEventLoop.create_task()
cancel() Request that this task cancel itself. This arranges for a
get_event_loop() Get the event loop for the current context. Returns an event loop object implementing
set_exception(exc) Set the exception.
feed_eof() Acknowledge the EOF.
poll.register(fd[, eventmask]) Register a file descriptor with the polling object. Future calls to the poll() method
poll.poll([timeout]) Polls the set of registered file descriptors, and returns a possibly-empty list containing (fd, event)
class asyncio.Event(*, loop=None) An Event implementation, asynchronous equivalent to
terminate() Ask the subprocess to stop, as in
AbstractEventLoop.run_until_complete(future) Run until the
Page 22 of 28