Participer au site avec un Tip
Rechercher
 

Améliorations / Corrections

Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.

Emplacement :

Description des améliorations :

Classe « AbstractEventLoop » Python 3.11.3

Méthode asyncio.AbstractEventLoop.connect_read_pipe

Signature de la méthode connect_read_pipe

def connect_read_pipe(self, protocol_factory, pipe) 

Description

help(AbstractEventLoop.connect_read_pipe)

Register read pipe in event loop. Set the pipe to non-blocking mode.

        protocol_factory should instantiate object with Protocol interface.
        pipe is a file-like object.
        Return pair (transport, protocol), where transport supports the
        ReadTransport interface.