你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
IRetryOptions interface
重试选项接口。
属性
max |
可选。 指定重试操作之前允许的最大延迟, (默认值为 120s 或 120 * 1000ms) 。 如果指定 0,则还必须为 retryDelayInMs 指定 0。 |
max |
可选。 最大尝试次数,默认值为 4。 值 1 表示 1 次尝试且不重试。 小于 1 的值表示默认重试次数。 |
retry |
可选。 指定重试操作之前要使用的延迟量, (默认值为 4s 或 4 * 1000ms) 。 延迟 (指数级或线性) 增加,每次重试最多达到 maxRetryDelayInMs 指定的最大值。 如果指定 0,则还必须为 maxRetryDelayInMs 指定 0。 |
retry |
可选。 RetryPolicyType,默认值为指数重试策略。 |
属性详细信息
maxRetryDelayInMs
可选。 指定重试操作之前允许的最大延迟, (默认值为 120s 或 120 * 1000ms) 。 如果指定 0,则还必须为 retryDelayInMs 指定 0。
maxRetryDelayInMs?: number
属性值
number
maxTries
可选。 最大尝试次数,默认值为 4。 值 1 表示 1 次尝试且不重试。 小于 1 的值表示默认重试次数。
maxTries?: number
属性值
number
retryDelayInMs
可选。 指定重试操作之前要使用的延迟量, (默认值为 4s 或 4 * 1000ms) 。 延迟 (指数级或线性) 增加,每次重试最多达到 maxRetryDelayInMs 指定的最大值。 如果指定 0,则还必须为 maxRetryDelayInMs 指定 0。
retryDelayInMs?: number
属性值
number