Difference between revisions of "TThreadLinkedObjList"

From Ultibo.org
Jump to: navigation, search
(Created page with "Return to Unit UltiboClasses __TOC__ === Description === ---- ''To be documented'' === Class definitions === ---- <div class="toccolours mw-colla...")
 
(No difference)

Latest revision as of 05:27, 31 May 2018

Return to Unit UltiboClasses


Description


To be documented

Class definitions



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



constructor TThreadLinkedObjList.Create;
Description: To be documented
Note None documented


destructor TThreadLinkedObjList.Destroy;
Description: To be documented
Note None documented


procedure TThreadLinkedObjList.ClearList;
Description: To be documented
Note None documented


procedure TThreadLinkedObjList.LockList;
Description: To be documented
Note None documented


procedure TThreadLinkedObjList.UnlockList;
Description: To be documented
Note None documented


Return to Unit Reference