CAMEvent::Set
The Set method signals the event.
Syntax
void Set(void);
Remarks
The behavior depends on whether the object is an auto-reset event or a manual-reset event:
- Auto-reset: If any threads are waiting on this event, one thread is released and the event is reset. If no threads are waiting on this event, the event remains signaled.
- Manual-reset: All the threads waiting on this event are released. The event remains signaled.
See Also