coroutine AbstractEventLoop.connect_read_pipe(protocol_factory, pipe)
Register read pipe in eventloop.
protocol_factory should instantiate object with Protocol interface. pipe is a file-like object. Return pair (transport, protocol), where transport supports the ReadTransport interface.
With SelectorEventLoop event loop, the pipe is set to non-blocking mode.
This method is a coroutine.
Please login to continue.