public class JobStepExecutionOptions extends Object
| Constructor and Description |
|---|
JobStepExecutionOptions() |
| 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.
|
JobStepExecutionOptions |
withInitialRetryIntervalSeconds(Integer initialRetryIntervalSeconds)
Set initial delay between retries for job step execution.
|
JobStepExecutionOptions |
withMaximumRetryIntervalSeconds(Integer maximumRetryIntervalSeconds)
Set the maximum amount of time to wait between retries for job step execution.
|
JobStepExecutionOptions |
withRetryAttempts(Integer retryAttempts)
Set maximum number of times the job step will be reattempted if the first attempt fails.
|
JobStepExecutionOptions |
withRetryIntervalBackoffMultiplier(Double retryIntervalBackoffMultiplier)
Set the backoff multiplier for the time between retries.
|
JobStepExecutionOptions |
withTimeoutSeconds(Integer timeoutSeconds)
Set execution timeout for the job step.
|
public Integer timeoutSeconds()
public JobStepExecutionOptions withTimeoutSeconds(Integer timeoutSeconds)
timeoutSeconds - the timeoutSeconds value to setpublic Integer retryAttempts()
public JobStepExecutionOptions withRetryAttempts(Integer retryAttempts)
retryAttempts - the retryAttempts value to setpublic Integer initialRetryIntervalSeconds()
public JobStepExecutionOptions withInitialRetryIntervalSeconds(Integer initialRetryIntervalSeconds)
initialRetryIntervalSeconds - the initialRetryIntervalSeconds value to setpublic Integer maximumRetryIntervalSeconds()
public JobStepExecutionOptions withMaximumRetryIntervalSeconds(Integer maximumRetryIntervalSeconds)
maximumRetryIntervalSeconds - the maximumRetryIntervalSeconds value to setpublic Double retryIntervalBackoffMultiplier()
public JobStepExecutionOptions withRetryIntervalBackoffMultiplier(Double retryIntervalBackoffMultiplier)
retryIntervalBackoffMultiplier - the retryIntervalBackoffMultiplier value to set/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/