Files
stream-chat-flutter/packages/stream_chat/lib/src/ws/connection_status.dart
T
Sahil Kumar 839ced618b major refactoring
Signed-off-by: Sahil Kumar <[email protected]>
2021-05-27 19:59:34 +05:30

12 lines
257 B
Dart

/// Used to notify the WS connection status
enum ConnectionStatus {
/// WS is connected and everything is good
connected,
/// WS is connecting (usually reconnecting)
connecting,
/// WS is disconnected and it's not reconnecting
disconnected,
}