Event
from direct.stdpy.threading import Event
This class is designed to emulate Python's own threading.Event object.
Inheritance:
Event
:
Methods of Event:
__init__
clear
is_set
set
wait
__init__
def __init__(self)
Undocumented function.
clear
def clear(self)
Undocumented function.
is_set
def is_set(self)
Undocumented function.
set
def set(self)
Undocumented function.
wait
def wait(self, timeout=None)
Undocumented function.