RTCMultiConnection Server API
RTCMultiConnection server-side API for sgcWebSockets. Manage WebRTC rooms, signaling, and multi-party connections from your Delphi server.
RTCMultiConnection server-side API for sgcWebSockets. Manage WebRTC rooms, signaling, and multi-party connections from your Delphi server.
uses
sgcWebSocket_Server_API_RTCMultiConnection;
var
Server: TsgcWebSocketHTTPServer;
API: TsgcWSAPI_RTCMultiConnection;
begin
Server := TsgcWebSocketHTTPServer.Create(nil);
Server.Port := 9001;
API := TsgcWSAPI_RTCMultiConnection.Create(nil);
API.Server := Server;
Server.Start;
end;
Deep-link to the component reference, grab the ready-to-run demo project, and download the trial.