Return to Unit UltiboClasses
Description
To be documented
Class definitions
[Expand]
TThreadLinkedObjList = class(TLinkedList)
Note: TLinkedList with Auto Free of List Objects
Thread Safe Linked List which Frees all nodes on Destroy
|
|
constructor Create;
|
|
destructor Destroy; override;
|
|
private
|
FLock:TRTLCriticalSection;
|
|
public
|
procedure ClearList;
|
|
|
procedure LockList;
|
|
procedure UnlockList;
|
|
Function declarations
[Expand]
constructor TThreadLinkedObjList.Create;
Description: To be documented
[Expand]
destructor TThreadLinkedObjList.Destroy;
Description: To be documented
[Expand]
procedure TThreadLinkedObjList.ClearList;
Description: To be documented
[Expand]
procedure TThreadLinkedObjList.LockList;
Description: To be documented
[Expand]
procedure TThreadLinkedObjList.UnlockList;
Description: To be documented
Return to Unit Reference