Difference between revisions of "TWinsock2TCPServerThread"
From Ultibo.org
(Created page with "Return to Unit Winsock2 __TOC__ === Description === ---- ''To be documented'' === Class definitions === ---- <div class="toccolours mw-collapsible mw-...") |
|||
| Line 21: | Line 21: | ||
|colspan="2"|<div style="font-family: monospace,courier;">'''public'''</div> | |colspan="2"|<div style="font-family: monospace,courier;">'''public'''</div> | ||
|- | |- | ||
| − | | <code>constructor Create(AServer:TWinsock2TCPServer);</code> | + | | <code>constructor Create(AServer:TWinsock2TCPServer; AStackSize:SizeUInt = 0);</code> |
| style="width: 50%;"| | | style="width: 50%;"| | ||
|- | |- | ||
| Line 65: | Line 65: | ||
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
| − | <pre style="border: 0; padding-bottom:0px;">constructor TWinsock2TCPServerThread.Create(AServer:TWinsock2TCPServer);</pre> | + | <pre style="border: 0; padding-bottom:0px;">constructor TWinsock2TCPServerThread.Create(AServer:TWinsock2TCPServer; AStackSize:SizeUInt = 0);</pre> |
<div style="font-size: 14px; padding-left: 12px;">'''Description:''' To be documented</div> | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' To be documented</div> | ||
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
Latest revision as of 05:16, 5 November 2025
Return to Unit Winsock2
Description
To be documented
Class definitions
TWinsock2TCPServerThread = class(TWinsock2SocketThread)
public
| |
constructor Create(AServer:TWinsock2TCPServer; AStackSize:SizeUInt = 0);
|
|
destructor Destroy; override;
|
|
private
| |
FData:TObject;
|
|
FServer:TWinsock2TCPServer;
|
|
protected
| |
procedure AfterExecution; override;
|
|
procedure BeforeExecution; override;
|
|
public
| |
property Data:TObject read FData write FData;
|
|
property Server:TWinsock2TCPServer read FServer;
|
|
procedure Execution; override;
|
|
Function declarations
constructor TWinsock2TCPServerThread.Create(AServer:TWinsock2TCPServer; AStackSize:SizeUInt = 0);
Description: To be documented
| Note | None documented |
|---|
destructor TWinsock2TCPServerThread.Destroy;
Description: To be documented
| Note | None documented |
|---|
procedure TWinsock2TCPServerThread.AfterExecution;
Description: To be documented
| Note | None documented |
|---|
procedure TWinsock2TCPServerThread.BeforeExecution;
Description: To be documented
| Note | None documented |
|---|
procedure TWinsock2TCPServerThread.Execution;
Description: To be documented
| Note | None documented |
|---|
Return to Unit Reference