enum SessionState: Int, Sendable
| Member | Description |
|---|---|
stopped |
The session is not active and not attempting to connect.
|
waitingForDevice |
The session is waiting for a device to become available for connection.
|
running |
The session is actively running and processing data from the device.
|
paused |
The session is temporarily paused but maintains its connection.
|
unknown |
The session state is not currently determinable.
|
description
: String
[Get] |
Provides a human-readable description of the session state.
|