Aracılığıyla paylaş


JobStepExecutionOptions Constructors

Definition

Overloads

JobStepExecutionOptions()

Initializes a new instance of the JobStepExecutionOptions class.

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

Initializes a new instance of the JobStepExecutionOptions class.

JobStepExecutionOptions()

Initializes a new instance of the JobStepExecutionOptions class.

public JobStepExecutionOptions ();
Public Sub New ()

Applies to

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

Initializes a new instance of the JobStepExecutionOptions class.

public JobStepExecutionOptions (int? timeoutSeconds = default, int? retryAttempts = default, int? initialRetryIntervalSeconds = default, int? maximumRetryIntervalSeconds = default, double? retryIntervalBackoffMultiplier = default);
new Microsoft.Azure.Management.Sql.Models.JobStepExecutionOptions : Nullable<int> * Nullable<int> * Nullable<int> * Nullable<int> * Nullable<double> -> Microsoft.Azure.Management.Sql.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)

Parameters

timeoutSeconds
Nullable<Int32>

Execution timeout for the job step.

retryAttempts
Nullable<Int32>

Maximum number of times the job step will be reattempted if the first attempt fails.

initialRetryIntervalSeconds
Nullable<Int32>

Initial delay between retries for job step execution.

maximumRetryIntervalSeconds
Nullable<Int32>

The maximum amount of time to wait between retries for job step execution.

retryIntervalBackoffMultiplier
Nullable<Double>

The backoff multiplier for the time between retries.

Applies to