class documentation

class _PipeConditionWithMode(PipeCondition):

View In Hierarchy

Undocumented

Method __init__ Initializes this class.
Class Variable __slots__ Undocumented
Instance Variable shared Undocumented

Inherited from PipeCondition:

Method __repr__ Undocumented
Method get_waiting Returns a list of all waiting threads.
Method has_waiting Returns whether there are active waiters.
Method notify_all Notify all currently waiting threads.
Method wait Wait for a notification.
Instance Variable _single_condition Undocumented
Instance Variable _waiters Undocumented

Inherited from _BaseCondition (via PipeCondition):

Instance Variable acquire Undocumented
Instance Variable release Undocumented
Method _base_acquire_restore Undocumented
Method _base_is_owned Check whether lock is owned by current thread.
Method _base_release_save Undocumented
Method _check_owned Raise an exception if the current thread doesn't own the lock.
Instance Variable _acquire_restore Undocumented
Instance Variable _is_owned Undocumented
Instance Variable _lock Undocumented
Instance Variable _release_save Undocumented
def __init__(self, lock, shared):

Initializes this class.

__slots__: list[str] =
shared =

Undocumented