Table of Contents

Enum DelayBackoffType

Namespace
OpenSettings.Models
Assembly
OpenSettings.dll

Represents the type of delay backoff strategy used for retrying operations.

public enum DelayBackoffType

Fields

Constant = 0

Constant backoff is a strategy in which the wait time between retries remains constant for each attempt.

Exponential = 2

Exponential backoff is a strategy in which the wait time between retries increases exponentially with each attempt.

Linear = 1

Linear backoff is a strategy in which the wait time between retries increases linearly with each attempt.