enum DeviceSessionState : Enum<DeviceSessionState>
| Member | Description |
|---|---|
IDLE |
The session has been created but Session.start has not yet been called.
|
STARTING | Session.start has been called and the session is connecting to the device.
|
STARTED |
The session is active and connected to a Meta Wearables device.
|
PAUSED |
The session is temporarily paused (e.g., device entered low-power mode).
|
STOPPING | Session.stop has been called and the session is cleaning up resources.
|
STOPPED |
The session is inactive and not connected to any device. This is a terminal state — the session cannot be restarted. Create a new session via Wearables.createSession if needed.
|