RTLEventCreate
Create a new RTL event
Declaration
Source position: threadh.inc line 179
function RTLEventCreate : PRTLEvent;
Description
RTLEventCreate creates and initializes a new RTL event. RTL events are used to notify other threads that a certain condition is met, and to notify other threads of condition changes (conditional variables).
The function returns an initialized RTL event, which must be disposed of with RTLEventdestroy
RTLEvent is used mainly for the synchronize method.
See also
Name | Description |
---|---|
RTLEventDestroy | Destroy a RTL Event |
RTLEventReSetEvent | Reset an event |
RTLEventSetEvent | Notify threads of the event. |
RTLEventWaitFor | Wait for an event. |