asyncio.get_event_loop() Equivalent to calling get_event_loop_policy().get_event_loop().
asyncio.set_event_loop(loop) Equivalent to calling get_event_loop_policy().set_event_loop(loop).
Protocol.data_received(data) Called when some data is received. data is a non-empty bytes object containing the incoming
devpoll.close() Close the file descriptor of the polling object.
epoll.modify(fd, eventmask) Modify a registered file descriptor.
epoll.close() Close the control file descriptor of the epoll object.
coroutine acquire() Acquire the underlying lock. This method blocks until the lock is unlocked
get_pipe_transport(fd) Return the transport for the communication pipe corresponding to the integer file descriptor fd:
coroutine AbstractEventLoop.create_unix_server(protocol_factory, path=None, *, sock=None, backlog=100, ssl=None) Similar to
write_eof() Close the write end of the transport after flushing buffered data: see
Page 2 of 28