JCL Help:TJclEvent.Create

From Project JEDI Wiki
Jump to navigationJump to search


Summary

Creates an instance of a TJclEvent object.


Pascal

 public constructor Create(SecAttr: PSecurityAttributes; Manual: Boolean; Signaled: Boolean; const Name: string);


Parameters

Parameters Description
SecAttr: PSecurityAttributes Pointer to a TSecurityAttributes record that specifies the security attributes of the new Event object such as whether it can be inherited. If you specify nil the Handle cannot be inherited and the Event receives a default security descriptor.
Manual: Boolean Specifies whether a manual-reset or auto-reset event is created. If True (manual-reset) you must use the ResetEvent method to manually reset the state of the event to nonsignaled. If False (auto-reset) the system automatically sets the state of the Event object to non-signaled when a thread successfully waited on the event.
Signaled: Boolean Specifies the initial state of the Event. If True the Event is created in the signaled state, if False it is created in the non-signaled state.
const Name: string Name of the Event object, can be empty. If an event already exists on the system with the same name, the event is opened with EVENT_ALL_ACCESS. If the Event cannot be opened the constructor fails by raising an EJclEventError exception. If no Event with the specified name exists, the Event is created with that name. If a named object already exists wit the specified name but it is not an event, the constructor fails by raising an EJclEventError exception.


Description

Create creates an instance of a TJclEvent object.


See Also

Open


About

Donator

Marcel van Brakel


Contribute to this help topic

This documentation wiki is based on the collaborative effort of Project JEDI users. Your edits are welcome in order to improve documentation quality: edit this page