coroutine AbstractEventLoop.sock_accept(sock) Accept a connection. Modeled after blocking
class asyncio.AbstractEventLoop Abstract base class of event loops. This class is
AbstractEventLoop.stop() Stop running the event loop. This causes run_forever()
class selectors.PollSelector
cancel() Cancel the call. If the callback is already canceled or executed, this method has no effect.
class asyncio.ProactorEventLoop Proactor event loop for Windows using “I/O Completion Ports” aka IOCP. Subclass of
poll.unregister(fd) Remove a file descriptor being tracked by a polling object. Just like the register() method
coroutine put(item) Put an item into the queue. If the queue is full, wait until a free slot is available before adding item
coroutine join() Block until all items in the queue have been gotten and processed. The count
epoll.unregister(fd) Remove a registered file descriptor from the epoll object.
Page 12 of 28