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

JobStepExecutionOptions 构造函数

定义

重载

JobStepExecutionOptions()

初始化 JobStepExecutionOptions 类的新实例。

JobStepExecutionOptions(Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Double>)

初始化 JobStepExecutionOptions 类的新实例。

JobStepExecutionOptions()

初始化 JobStepExecutionOptions 类的新实例。

public JobStepExecutionOptions ();
Public Sub New ()

适用于

JobStepExecutionOptions(Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Double>)

初始化 JobStepExecutionOptions 类的新实例。

public JobStepExecutionOptions (int? timeoutSeconds = default, int? retryAttempts = default, int? initialRetryIntervalSeconds = default, int? maximumRetryIntervalSeconds = default, double? retryIntervalBackoffMultiplier = default);
new Microsoft.Azure.Management.Sql.Fluent.Models.JobStepExecutionOptions : Nullable<int> * Nullable<int> * Nullable<int> * Nullable<int> * Nullable<double> -> Microsoft.Azure.Management.Sql.Fluent.Models.JobStepExecutionOptions
Public Sub New (Optional timeoutSeconds As Nullable(Of Integer) = Nothing, Optional retryAttempts As Nullable(Of Integer) = Nothing, Optional initialRetryIntervalSeconds As Nullable(Of Integer) = Nothing, Optional maximumRetryIntervalSeconds As Nullable(Of Integer) = Nothing, Optional retryIntervalBackoffMultiplier As Nullable(Of Double) = Nothing)

参数

timeoutSeconds
Nullable<Int32>

作业步骤的执行超时。

retryAttempts
Nullable<Int32>

如果首次尝试失败,作业步骤将重新尝试的最大次数。

initialRetryIntervalSeconds
Nullable<Int32>

作业步骤执行重试之间的初始延迟。

maximumRetryIntervalSeconds
Nullable<Int32>

作业步骤执行两次重试之间等待的最长时间。

retryIntervalBackoffMultiplier
Nullable<Double>

两次重试时间的退避乘数。

适用于