-
Notifications
You must be signed in to change notification settings - Fork 0
WebSocket
JayaShankar Mangina edited this page Jan 30, 2022
·
1 revision
WebSocket is a computer communications protocol, providing communication channels over a single TCP connection. The WebSocket protocol enables interaction between a web browser (or other client application) and a web server, facilitating real-time data transfer from and to the server.
This is made possible by providing a standardized way for the server to send content to the client without being first requested by the client, and allowing messages to be passed back and forth while keeping the connection open. In this way, a two-way ongoing conversation can take place between the client and the server.