DelayBackoffType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies a backoff type for the delay between retries.
public enum DelayBackoffType
type DelayBackoffType =
Public Enum DelayBackoffType
- Inheritance
-
DelayBackoffType
Fields
Name | Value | Description |
---|---|---|
Constant | 0 | Specifies a constant backoff type. Meaning the delay between retries is constant. |
Exponential | 1 | Specifies an exponential backoff type. The delay is calculated as the base delay * 2^(n-1) where n is the retry attempt. For example, if the base delay is 1000ms, the delays will be 1000ms, 2000ms, 4000ms, 8000ms, etc. |
Applies to
Spolupracujte s námi na GitHubu
Zdroj tohoto obsahu najdete na GitHubu, kde můžete také vytvářet a kontrolovat problémy a žádosti o přijetí změn. Další informace najdete v našem průvodci pro přispěvatele.