Variable RPCConfig.max_retries

Maximum number of retries before throwing an Exception

struct RPCConfig
{
  // ...
  uint max_retries ;
  // ...
}

Whenever connecting or sending a request to a remote host, this class will perform max_retries attempt at the operation before throwing an Exception. Each attempt will have a delay in between, and their own timeout, depending on the operation.