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
fileno() This returns the file descriptor used by the underlying
SubprocessProtocol.pipe_data_received(fd, data) Called when the child process writes data into its stdout or stderr pipe. fd
coroutine AbstractEventLoop.subprocess_exec(protocol_factory, *args, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, **kwargs)
coroutine asyncio.wait(futures, *, loop=None, timeout=None, return_when=ALL_COMPLETED) Wait for the Futures and coroutine objects
class asyncio.DatagramProtocol The base class for implementing datagram protocols (for use with e.g. UDP transports).
Page 23 of 28