hello method

Future<void> hello(
  1. int protover
)

hello

Implementation

Future<void> hello(int protover) async {
  return await _runWithRetryNew(() async {
    (await RespCommandsTier1(_client!).select(protover));
    _client?.setRespType(protover);
    return null;
  });
}