12 lines
366 B
Dart
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,
|
|
} |