Files
TelemetryMonitor/lib/transport/connection_state.dart
2026-04-21 14:40:09 -03:00

12 lines
366 B
Dart

/// State of the WebSocket connection. Reported by `WebSocketTransport`.
///
/// Transitions:
/// disconnected -> connecting -> connected
/// -> disconnected (immediate failure)
/// connected -> disconnected -> reconnecting -> connecting -> ...
enum WsConnectionState {
disconnected,
connecting,
connected,
reconnecting,
}