Table of Contents

Enum DelayBackoffType

Namespace
Polly
Assembly
Polly.Core.dll

The backoff type used by the strategies.

public enum DelayBackoffType

Fields

Constant = 0

The constant backoff type.

Ensures a constant backoff for each attempt.

Exponential = 2

The exponential backoff type with the power of 2.

Linear = 1

The linear backoff type.

Generates backoffs in an linear manner. In the case randomization introduced by the jitter and exponential growth are not appropriate, the linear growth allows for more precise control over the backoff intervals.