sendCommand method

Future sendCommand(
  1. List<String> commandList
)

send command to connection

Implementation

Future<dynamic> sendCommand(List<String> commandList) async {
  if (connection.isBusy == false || redisClientType != RedisType.normal) {
    return connection.sendCommand(commandList);
  }
  return pool.sendCommand(commandList);
}