Reference API Roblox

Engine API

Website

Related

Reference API Roblox

WebStreamClientState

WebStreamClientState indicates the current state of a WebStreamClient object.

Items 4

HistoryNameValueDescription
686Connecting0

The client has sent a request to connect with the server and is waiting for a response.

686Open1

The client is connected to the server, allowing for data to be streamed between the server and client.

686Error2

An unrecoverable error has occured while setting up the connection orduring the connection lifetime, cutting off the stream.

686Closed3

The connection has run to completion without issues, either closed naturally by the server or manually by the user.

Description

WebStreamClientState describes the lifecycle state of a WebStreamClient connection, readable through the WebStreamClient.ConnectionState property.

A newly created WebStreamClient begins in the Connecting state. On a successful handshake the state advances to Open, after which messages can be received (and sent, for WebSocket connections). The connection terminates in either Closed (clean shutdown) or Error (unrecoverable failure). Listening to the WebStreamClient.Opened, WebStreamClient.Closed, and WebStreamClient.Error events is the recommended way to react to these transitions.

History 5

Settings