TIncrementalCacheTimer

From Ultibo.org
Jump to: navigation, search

Return to Unit Filesystem


Description


To be documented

Class definitions



[Expand]

TIncrementalCacheTimer = class(TObject)


Function declarations



[Expand]
constructor TIncrementalCacheTimer.Create(ACache:TIncrementalCache);
Description: To be documented


[Expand]
destructor TIncrementalCacheTimer.Destroy;
Description: To be documented


[Expand]
function TIncrementalCacheTimer.AcquireLock:Boolean;
Description: To be documented


[Expand]
function TIncrementalCacheTimer.ReleaseLock:Boolean;
Description: To be documented


[Expand]
function TIncrementalCacheTimer.Dequeue(AMax:Integer):TCachePage;
Description: Get and remove the first page from the timer list if the key is less than or equal to Max


[Expand]
function TIncrementalCacheTimer.FirstKey:Integer;
Description: Get the first Key value from the timer list


[Expand]
function TIncrementalCacheTimer.InsertKey(APage:TCachePage; AKey:Integer):Boolean;
Description: Insert the supplied page in the timer list in delta ascending order based on Key


[Expand]
function TIncrementalCacheTimer.DeleteKey(APage:TCachePage):Boolean;
Description: Delete the supplied page from the timer list


[Expand]
function TIncrementalCacheTimer.DecrementKey:Integer;
Description: Decrement the first Key value in the Timer list


[Expand]
function TIncrementalCacheTimer.StartTimer(AInterval:LongWord):Boolean;
Description: To be documented


[Expand]
function TIncrementalCacheTimer.StopTimer:Boolean;
Description: To be documented


[Expand]
function TIncrementalCacheTimer.CheckTimer:Boolean;
Description: To be documented


[Expand]
function TIncrementalCacheTimer.ProcessTimer:Boolean;
Description: To be documented


[Expand]
function TIncrementalCacheTimer.SchedulePage(APage:TCachePage; ATimeout:LongWord):Boolean;
Description: To be documented


[Expand]
function TIncrementalCacheTimer.UnschedulePage(APage:TCachePage):Boolean;
Description: To be documented


Return to Unit Reference