System.SyncObjs.TWaitResult
Delphi
TWaitResult = System.Types.TWaitResult;
Properties
| Type | Visibility | Source | Unit | Parent | 
|---|---|---|---|---|
| enum | public | System.SyncObjs.pas | System.SyncObjs | System.SyncObjs | 
Description
TWaitResult indicates the reason an event object stopped waiting for its signal.
TWaitResult includes the following values:
| Value | Meaning | 
|---|---|
| wrSignaled | The signal of the event object was set. | 
| wrTimeOut | The time specified by the TimeOut parameter elapsed without the signal being set. | 
| wrAbandoned | The event object was destroyed before the TimeOut period elapsed. | 
| wrError | An error occurred while waiting. Check the LastError property for an error code giving more information. |