setMaxReconnectionAttempts method

AppSettingsBuilder setMaxReconnectionAttempts(
  1. int maxReconnectionAttempts
)

Sets the maximum reconnection attempts. Android Reference: AppSettingsBuilder.setMaxReconnectionAttempts(int)

Implementation

AppSettingsBuilder setMaxReconnectionAttempts(int maxReconnectionAttempts) {
  this.maxReconnectionAttempts = maxReconnectionAttempts;
  return this;
}