backoffMode property

String? backoffMode
getter/setter pair

The pattern of how wait time will be increased.

Default is linear. Backoff mode will be ignored if wait is 0.

Optional. Possible string values are:

  • "BACKOFF_MODE_UNSPECIFIED" : No WaitMode is specified.
  • "BACKOFF_MODE_LINEAR" : Increases the wait time linearly.
  • "BACKOFF_MODE_EXPONENTIAL" : Increases the wait time exponentially.

Implementation

core.String? backoffMode;