---
name: WebStreamClientState
last_updated: 2026-07-01T03:40:48Z
type: enum
summary: "WebStreamClientState indicates the current state of a WebStreamClient object."
---

# WebStreamClientState

WebStreamClientState indicates the current state of a WebStreamClient object.

**Type:** enum

## Items

| Name | Value | Description |
|------|-------|-------------|
| `Connecting` | 0 | The client has sent a request to connect with the server and is waiting for a response. |
| `Open` | 1 | The client is connected to the server, allowing for data to be streamed between the server and client. |
| `Error` | 2 | An unrecoverable error has occured while setting up the connection orduring the connection lifetime, cutting off the stream. |
| `Closed` | 3 | The connection has run to completion without issues, either closed naturally by the server or manually by the user. |