maxRetries method

VinculumConfigBuilder maxRetries(
  1. int count
)

Sets the maximum number of retries

Implementation

VinculumConfigBuilder maxRetries(int count) {
  _maxRetries = count;
  return this;
}