Room State
data class RoomState(val scheduledRoomList: StateFlow<List<RoomInfo>>, val scheduledRoomListCursor: StateFlow<String>, val currentRoom: StateFlow<RoomInfo?>)
Room related state data provided by RoomStore
Overview
Comprehensive snapshot of current room session state. This structure contains all relevant information about current room and scheduled room list.
State Properties Overview
| Property | Type | Description |
| scheduledRoomList | StateFlow<List<RoomInfo>> | Scheduled room list |
| scheduledRoomListCursor | StateFlow<String> | Scheduled room list cursor |
| currentRoom | StateFlow<RoomInfo?> | Current room info |
Tip: State is automatically updated when room status changes. Subscribe to state to receive real-time updates.