你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

NoRetry class

阻止任何试行重试的存根策略。 不会重试操作。

方法

nextRetryTimeout(number)

这始终返回 -1,因为不需要重试。

shouldRetry(Error)

这始终返回 false,因为不需要重试。

方法详细信息

nextRetryTimeout(number)

这始终返回 -1,因为不需要重试。

function nextRetryTimeout(_retryCount: number): number

参数

_retryCount

number

返回

number

shouldRetry(Error)

这始终返回 false,因为不需要重试。

function shouldRetry(_err: Error): boolean

参数

_err

Error

返回

boolean

将始终为 false:无论错误是什么,都不应尝试重试。