enum DeviceSessionState: Equatable, Sendable
| Member | Description |
|---|---|
idle |
The session has been created but DeviceSession.start() has not been called yet.
|
starting |
The session is connecting to the device.
|
started |
The session is connected and active.
|
paused |
The session is temporarily paused (device-initiated, e.g. cap-touch).
|
stopping |
The session is stopping and cleaning up resources.
|
stopped |
The session has ended. A new session must be created via WearablesInterface.createSession(deviceSelector:).
|
description
: String
[Get] |
Provides a human-readable description of the session state.
|