Panda3D
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Properties
Public Member Functions | Static Public Attributes | List of all members
Condition Class Reference
Inheritance diagram for Condition:

Public Member Functions

def __init__
 
def __exit__
 
def acquire
 
def notifyAll
 
def release
 
def wait
 

Static Public Attributes

 notify_all = notifyAll
 

Detailed Description

This class provides a wrapper around Panda's ConditionVarFull
object.  The wrapper is designed to emulate Python's own
threading.Condition object. 

Constructor & Destructor Documentation

def __init__ (   self,
  lock = None 
)

Member Function Documentation

def __exit__ (   self,
  t,
  v,
  tb 
)
def acquire (   self,
  args,
  kw 
)
def notifyAll (   self)
def release (   self)
def wait (   self,
  timeout = None 
)

Member Data Documentation

notify_all = notifyAll
static