TSocketTimer
From Ultibo.org
Return to Unit Protocol
Description
To be documented
Class definitions
[Expand]
TSocketTimer = class(TObject)
Function declarations
[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.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