From 7d53de587b8d4ebde40068d3a7c2fa228c91f28c Mon Sep 17 00:00:00 2001 From: Fred Vasquez Date: Tue, 27 Dec 2022 11:13:32 -0300 Subject: [PATCH] Update websockets content (#3183) * Update 101-web-sockets.md Adding simple introduction and useful links. * Update websockets link Co-authored-by: Kamran Ahmed --- .../content/108-working-with-apis/101-web-sockets.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/content/roadmaps/117-flutter/content/108-working-with-apis/101-web-sockets.md b/content/roadmaps/117-flutter/content/108-working-with-apis/101-web-sockets.md index d12b744e0..2895806dd 100644 --- a/content/roadmaps/117-flutter/content/108-working-with-apis/101-web-sockets.md +++ b/content/roadmaps/117-flutter/content/108-working-with-apis/101-web-sockets.md @@ -1,6 +1,7 @@ -# Web sockets +# Web Sockets + +In addition to normal HTTP requests, you can connect to servers using WebSockets. Web sockets allows for bidirectional communication between a client (such as a web browser) and a server over a single, long-lived connection. They are a more efficient alternative to HTTP for providing real-time data, as they allow for the server to push data to the client as soon as it becomes available, rather than requiring the client to continuously poll the server for updates. -In addition to normal HTTP requests, you can connect to servers using WebSockets. WebSockets allow for two-way communication with a server without polling. Free Content Work with WebSockets