disconnect method
Disconnect redis connection
Implementation
Future<void> disconnect() async {
_shouldReconnect = false;
_shouldThrowErrorOnConnection = false;
await _redisSocket?.close();
}
Disconnect redis connection
Future<void> disconnect() async {
_shouldReconnect = false;
_shouldThrowErrorOnConnection = false;
await _redisSocket?.close();
}