Return to Unit Network
Description
To be documented
Class definitions
[Expand]
TAdapterBuffer = class(TObject)
Note: Ring buffer for Packets.
|
|
constructor Create;
|
|
destructor Destroy; override;
|
|
private
|
FLock:TCriticalSectionHandle;
|
|
protected
|
FSize:Integer;
|
|
FCount:Integer;
|
|
FNextRead:Integer;
|
|
FNextWrite:Integer;
|
|
|
FList:TList;
|
|
FMemory:TMemoryStream;
|
|
|
function AcquireLock:Boolean;
|
|
function ReleaseLock:Boolean;
|
|
|
procedure SetSize(ASize:Integer);
|
|
public
|
property Size:Integer read FSize write SetSize;
|
|
|
function ReadNext:Pointer;
|
|
function WriteNext:Pointer;
|
|
Function declarations
[Expand]
constructor TAdapterBuffer.Create;
Description: To be documented
[Expand]
destructor TAdapterBuffer.Destroy;
Description: To be documented
[Expand]
function TAdapterBuffer.AcquireLock:Boolean;
Description: To be documented
[Expand]
function TAdapterBuffer.ReleaseLock:Boolean;
Description: To be documented
[Expand]
procedure TAdapterBuffer.SetSize(ASize:Integer);
Description: To be documented
[Expand]
function TAdapterBuffer.ReadNext:Pointer;
Description: To be documented
[Expand]
function TAdapterBuffer.WriteNext:Pointer;
Description: To be documented
Return to Unit Reference