[Overview][Constants][Types][Classes][Index] |
Create a new event object
Source position: syncobjs.pp line 65
public constructor TEventObject.Create( |
EventAttributes: PSecurityAttributes; |
AManualReset: Boolean; |
InitialState: Boolean; |
const Name: string |
); |
EventAttributes |
|
Security attributes (only used on Windows) |
AManualReset |
|
Manual reset allowed |
InitialState |
|
Initial event state |
Name |
|
Name uniquely identifying the event in this process. |
Create creates a new event object with unique name AName. The object will be created security attributes EventAttributes (windows only).
The AManualReset indicates whether the event must be reset manually (if it is False, the event is reset immediately after the first thread waiting for it is notified). InitialState determines whether the event is initially set or not.
|
Should the event be reset manually |
|
|
Reset the event |