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 « AbstractChildWatcher » Python 3.11.3

Méthode asyncio.AbstractChildWatcher.add_child_handler

Signature de la méthode add_child_handler

def add_child_handler(self, pid, callback, *args) 

Description

help(AbstractChildWatcher.add_child_handler)

Register a new child handler.

        Arrange for callback(pid, returncode, *args) to be called when
        process 'pid' terminates. Specifying another callback for the same
        process replaces the previous handler.

        Note: callback() must be thread-safe.