System.SyncObjs.TEvent.ResetEvent
Delphi
procedure ResetEvent;
C++
void __fastcall ResetEvent(void);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
procedure function |
public | System.SyncObjs.pas System.SyncObjs.hpp |
System.SyncObjs | TEvent |
Description
Turns off the signal of the event object.
Call ResetEvent to signal that the event has not occurred or the desired state was not achieved. Other threads or processes that wait for the event will wait until the signal is turned on again by the SetEvent method, the event object is destroyed, or the waiting process times out.