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 :

Module « threading » Python 3.11.3

Classe « Condition »

Informations générales

Héritage

builtins.object
    Condition

Définition

class Condition(builtins.object):

help(Condition)

Class that implements a condition variable.

    A condition variable allows one or more threads to wait until they are
    notified by another thread.

    If the lock argument is given and not None, it must be a Lock or RLock
    object, and it is used as the underlying lock. Otherwise, a new RLock object
    is created and used as the underlying lock.

    

Constructeur(s)

Signature du constructeur Description
__init__(self, lock=None)

Liste des opérateurs

Opérateurs hérités de la classe object

__eq__, __ge__, __gt__, __le__, __lt__, __ne__

Liste des méthodes

Toutes les méthodes Méthodes d'instance Méthodes statiques Méthodes dépréciées
Signature de la méthodeDescription
__enter__(self)
__exit__(self, *args)
__repr__(self)
notify(self, n=1) Wake up one or more threads waiting on this condition, if any. [extrait de notify.__doc__]
notify_all(self) Wake up all threads waiting on this condition. [extrait de notify_all.__doc__]
notifyAll(self) Wake up all threads waiting on this condition. [extrait de notifyAll.__doc__]
wait(self, timeout=None) Wait until notified or until a timeout occurs. [extrait de wait.__doc__]
wait_for(self, predicate, timeout=None) Wait until a condition evaluates to True. [extrait de wait_for.__doc__]

Méthodes héritées de la classe object

__delattr__, __dir__, __format__, __getattribute__, __getstate__, __hash__, __init_subclass__, __reduce__, __reduce_ex__, __setattr__, __sizeof__, __str__, __subclasshook__