JobStepExecutionOptions Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Maximum number of times the job step will be reattempted if the first attempt fails.
The maximum amount of time to wait between retries for job step execution.
The backoff multiplier for the time between retries.
Applies to
Azure SDK for .NET