TSocketTimer

From Ultibo.org
Jump to: navigation, search

Return to Unit Protocol


Description


To be documented

Class definitions



[Expand]

TSocketTimer = class(TObject)


Function declarations



[Expand]
constructor TSocketTimer.Create(AProtocol:TNetworkProtocol);
Description: To be documented


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


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


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


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


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


[Expand]
function TSocketTimer.InsertKey(ASocket:TProtocolSocket; AItem:PSocketTimerItem; AKey:Integer):Boolean;
Description: Insert the supplied socket in the timer list in delta ascending order based on Key


[Expand]
function TSocketTimer.DeleteKey(ASocket:TProtocolSocket; AItem:PSocketTimerItem):Boolean;
Description: Delete the supplied socket from the timer list


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


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


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


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


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


[Expand]
function TSocketTimer.ScheduleSocket(ASocket:TProtocolSocket; ATimeout:LongWord):Boolean;
Description: To be documented


[Expand]
function TSocketTimer.UnscheduleSocket(ASocket:TProtocolSocket):Boolean;
Description: To be documented


[Expand]
function TSocketTimer.ScheduleSocketItem(ASocket:TProtocolSocket; AItem:PSocketTimerItem; ATimeout:LongWord):Boolean;
Description: To be documented


[Expand]
function TSocketTimer.UnscheduleSocketItem(ASocket:TProtocolSocket; AItem:PSocketTimerItem):Boolean;
Description: To be documented


Return to Unit Reference