System.Win.ScktComp.TCustomServerSocket.OnThreadStart

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnThreadStart: TThreadNotifyEvent read GetOnThreadStart  write SetOnThreadStart;

C++

__property TThreadNotifyEvent OnThreadStart = {read=GetOnThreadStart, write=SetOnThreadStart};

Properties

Type Visibility Source Unit Parent
event protected
System.Win.ScktComp.pas
System.Win.ScktComp.hpp
System.Win.ScktComp TCustomServerSocket

Description

Occurs when the execution thread for a connection to a client socket starts up.

Write an OnThreadStart to initialize the TServerClientThread for the connection to a single client socket. The Sender parameter is the TServerWinSocket that describes the server endpoint of the listening connection. The Thread parameter is the thread that is about to start execution.

See Also