@@ -30,12 +30,12 @@ description: |
3030
3131 Within Studio, use
3232 `Class.HttpService:CreateWebStreamClient()|CreateWebStreamClient()` to process
33- data in real-time from HTTP servers that support streaming protocols such as
34- [SSE](https://en.wikipedia.org/wiki/Server-sent_events) or
35- [chunked transfer encoding](https://en.wikipedia.org/wiki/Chunked_transfer_encoding).
36- You can connect callback functions to stream events, allowing you to process
37- data immediately as it arrives instead of waiting for the entire response to
38- complete.
33+ data in real-time from servers that support streaming protocols such as
34+ [SSE](https://en.wikipedia.org/wiki/Server-sent_events),
35+ [chunked transfer encoding](https://en.wikipedia.org/wiki/Chunked_transfer_encoding),
36+ and [WebSockets](https://en.wikipedia.org/wiki/WebSocket). You can connect
37+ callback functions to stream events, allowing you to process data immediately
38+ as it arrives instead of waiting for the entire response to complete.
3939
4040 Only send HTTP requests to trusted third-party platforms to avoid introducing
4141 unnecessary security risks to your experience.
@@ -92,11 +92,10 @@ methods:
9292 these callbacks to process messages as soon as they arrive, as well as
9393 respond to open, close, and error events.
9494
95- There is a limit of six total `Enum.WebStreamClientType.SSE` or
96- `Enum.WebStreamClientType.RawStream` clients allowed at one time. Close
97- streams that you no longer need with `Class.WebStreamClient:Close()`. When
98- the stream is no longer needed, you should disconnect any associated
99- `Datatype.RBXScriptConnection` to avoid memory leaks.
95+ There is a limit of six total clients allowed at one time. Close streams
96+ that you no longer need with `Class.WebStreamClient:Close()`. When the
97+ stream is no longer needed, you should disconnect any associated
98+ `Datatype.RBXScriptConnection|RBXScriptConnections` to avoid memory leaks.
10099
101100 This method is available in Studio only. If you use it inside scripts,
102101 make sure to remove any references before publishing the experience. We
0 commit comments