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