asyncio.shield(arg, *, loop=None) Wait for a future, shielding it from cancellation. The statement:
abort() Close the transport immediately, without waiting for pending operations to complete. Buffered data will be lost. No
AbstractEventLoop.call_soon(callback, *args) Arrange for a callback to be called as soon as possible. The callback is called
AbstractEventLoop.get_task_factory() Return a task factory, or None if the default one is in use.
AbstractEventLoop.is_running() Returns running status of event loop.
set() Set the internal flag to true. All coroutines waiting for it to become true are awakened. Coroutine that call
select.devpoll() (Only supported on Solaris and derivatives.) Returns a /dev/poll polling object; see section /dev/poll
class asyncio.Future(*, loop=None) This class is almost compatible with
can_write_eof() Return
asyncio.set_event_loop_policy(policy) Set the current event loop policy. If policy is None, the default
Page 11 of 28