JobStepExecutionOptions Class
- java.
lang. Object - com.
microsoft. azure. management. sql. JobStepExecutionOptions
- com.
public class JobStepExecutionOptions
The execution options of a job step.
Method Summary
Modifier and Type | Method and Description |
---|---|
Integer |
initialRetryIntervalSeconds()
Get initial delay between retries for job step execution. |
Integer |
maximumRetryIntervalSeconds()
Get the maximum amount of time to wait between retries for job step execution. |
Integer |
retryAttempts()
Get maximum number of times the job step will be reattempted if the first attempt fails. |
Double |
retryIntervalBackoffMultiplier()
Get the backoff multiplier for the time between retries. |
Integer |
timeoutSeconds()
Get execution timeout for the job step. |
Job |
withInitialRetryIntervalSeconds(Integer initialRetryIntervalSeconds)
Set initial delay between retries for job step execution. |
Job |
withMaximumRetryIntervalSeconds(Integer maximumRetryIntervalSeconds)
Set the maximum amount of time to wait between retries for job step execution. |
Job |
withRetryAttempts(Integer retryAttempts)
Set maximum number of times the job step will be reattempted if the first attempt fails. |
Job |
withRetryIntervalBackoffMultiplier(Double retryIntervalBackoffMultiplier)
Set the backoff multiplier for the time between retries. |
Job |
withTimeoutSeconds(Integer timeoutSeconds)
Set execution timeout for the job step. |
Method Details
initialRetryIntervalSeconds
public Integer initialRetryIntervalSeconds()
Get initial delay between retries for job step execution.
Returns:
maximumRetryIntervalSeconds
public Integer maximumRetryIntervalSeconds()
Get the maximum amount of time to wait between retries for job step execution.
Returns:
retryAttempts
public Integer retryAttempts()
Get maximum number of times the job step will be reattempted if the first attempt fails.
Returns:
retryIntervalBackoffMultiplier
public Double retryIntervalBackoffMultiplier()
Get the backoff multiplier for the time between retries.
Returns:
timeoutSeconds
public Integer timeoutSeconds()
Get execution timeout for the job step.
Returns:
withInitialRetryIntervalSeconds
public JobStepExecutionOptions withInitialRetryIntervalSeconds(Integer initialRetryIntervalSeconds)
Set initial delay between retries for job step execution.
Parameters:
Returns:
withMaximumRetryIntervalSeconds
public JobStepExecutionOptions withMaximumRetryIntervalSeconds(Integer maximumRetryIntervalSeconds)
Set the maximum amount of time to wait between retries for job step execution.
Parameters:
Returns:
withRetryAttempts
public JobStepExecutionOptions withRetryAttempts(Integer retryAttempts)
Set maximum number of times the job step will be reattempted if the first attempt fails.
Parameters:
Returns:
withRetryIntervalBackoffMultiplier
public JobStepExecutionOptions withRetryIntervalBackoffMultiplier(Double retryIntervalBackoffMultiplier)
Set the backoff multiplier for the time between retries.
Parameters:
Returns:
withTimeoutSeconds
public JobStepExecutionOptions withTimeoutSeconds(Integer timeoutSeconds)
Set execution timeout for the job step.
Parameters:
Returns:
Applies to
Azure SDK for Java