Enumeration RoomStatus

The different states that a room can be in throughout its lifecycle.

Enumeration Members

Attached

The room is currently attached and receiving events.

Attaching

The library is currently attempting to attach the room.

Detached

The room is currently detached and will not receive events.

Detaching

The room is currently detaching and will not receive events.

Failed

The room is currently detached and will not attempt to re-attach. User intervention is required.

Initialized

A temporary state for when the room object is first initialized.

Initializing

The library is currently initializing the room. This state is a temporary state used in React prior to the room being resolved.

Released

The room has been released and is no longer usable.

Releasing

The room is in the process of releasing. Attempting to use a room in this state may result in undefined behavior.

Suspended

The room is in an extended state of detachment, but will attempt to re-attach when able.