TsgcWebSocketServer › Events › OnStartup
Fires after the server has started and is ready to accept connections.
property OnStartup: TNotifyEvent;
// TNotifyEvent = procedure(Sender: TObject) of object
—
OnStartup is raised in the main thread once the listener has been bound and the server starts accepting new connections. The Sender parameter is the TsgcWebSocketServer instance. It is a convenient place to log the server state or publish startup information; heavy initialization should still be performed before Active is set to True because OnStartup runs after the server is already listening.
procedure OnStartup(Sender: TObject);
begin
WriteLn('#server started');
end;