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

RetryOperation class

实现必要的逻辑来重试作,例如连接、接收 C2D 消息、发送遥测、孪生更新等。

构造函数

RetryOperation(string, RetryPolicy, number)

创建 <xref:azure-iot-common.RetryOperation.> 实例

方法

retry((opCallback: (err?: Error, result?: any, response?: any) => void) => void, (err?: Error, result?: any, response?: any) => void)

如果作失败,则执行作并重试,重试策略允许该作。

构造函数详细信息

RetryOperation(string, RetryPolicy, number)

创建 <xref:azure-iot-common.RetryOperation.> 实例

new RetryOperation(name: string, policy: RetryPolicy, maxTimeout: number)

参数

name

string

policy
RetryPolicy

要用于此作的重试策略,该策略确定“可重试”错误,以及重试速度。

maxTimeout

number

此作的最大超时时间,之后不会尝试重试。

方法详细信息

retry((opCallback: (err?: Error, result?: any, response?: any) => void) => void, (err?: Error, result?: any, response?: any) => void)

如果作失败,则执行作并重试,重试策略允许该作。

function retry(operation: (opCallback: (err?: Error, result?: any, response?: any) => void) => void, finalCallback: (err?: Error, result?: any, response?: any) => void)

参数

operation

(opCallback: (err?: Error, result?: any, response?: any) => void) => void

要执行的作。

finalCallback

(err?: Error, result?: any, response?: any) => void

需要重试后,使用最终错误或结果调用的回调。