TODO
Derived from
None.
Include files
<wx/thread.h>
See also
Members
wxCondition::wxCondition
wxCondition::~wxCondition
wxCondition::Broadcast
wxCondition::Signal
wxCondition::Wait
wxCondition()
Default constructor.
~wxCondition()
Destroys the wxCondition object.
void Broadcast()
Broadcasts to all waiting objects.
void Signal()
Signals the object.
void Wait(wxMutex& mutex)
Waits indefinitely.
bool Wait(wxMutex& mutex, unsigned long sec, unsigned long nsec)
Waits until a signal is raised or the timeout has elapsed.
Parameters
mutex
sec
nsec
Return value
The second form returns if the signal was raised, or FALSE if there was a timeout.