Difference between revisions of "TWSocketServer"
m (→Methods) |
|||
Line 45: | Line 45: | ||
{| | {| | ||
− | | valign="top" | [[TWSocketServer.Abort | Abort]] |||| Align test | + | | width="130" valign="top" | [[TWSocketServer.Abort | Abort]] |||| Align test |
|- | |- | ||
| valign="top" | [[TWSocketServer.Close | Close]] |||| | | valign="top" | [[TWSocketServer.Close | Close]] |||| |
Revision as of 14:13, 19 February 2006
Contents
Overview
- unit WSocketS.pas
- inheritance TWSocket
TWSocketServer will normally be used to listen on a given tcp port. When a client connect, it will instanciate a new TWSocketClient component to handle communication with client. Normally you will derive your own component from TWSocketClient to add private data and methods to handle it. You tell TWSocketServer which component it has to instanciate using ClientClass property. You have to initialize instances from OnClientConnect event handler. TWSocketServer maintain a list of connected clients. You can access it using Client[] indexed property and ClientCount property.
Since it is derrived from TWSocket, lots of properties and events are unused and not listed here. Properties and events that have a meaning in both server or client component are listed here.
Properties
Addr | ||
Banner | ||
BannerTooBusy | ||
Client | ||
ClientClass | ||
ClientCount | ||
Handle | ||
HSocket | ||
LastError | ||
ListenBacklog | ||
MaxClients | ||
Port | ||
PortNum | ||
Proto | ||
State | Align test |
Methods
Abort | Align test | |
Close | ||
CloseDelayed | ||
Create | ||
Destroy | ||
IsClient | ||
Listen | ||
MessageLoop | ||
MessagePump | ||
ProcessMessage | ||
ProcessMessages | ||
Release | ||
ThreadAttach | ||
ThreadDetach | Align test |
Events
OnBgException | Align test | |
OnChangeState | ||
OnClientConnect | ||
OnClientCreate | ||
OnClientDisconnect | ||
OnError | ||
OnMessagePump |