TaskConstraints 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
TaskConstraints() |
Initializes a new instance of the TaskConstraints class. |
TaskConstraints(Nullable<TimeSpan>, Nullable<TimeSpan>, Nullable<Int32>) |
Initializes a new instance of the TaskConstraints class. |
TaskConstraints()
- Source:
- TaskConstraints.cs
Initializes a new instance of the TaskConstraints class.
public TaskConstraints ();
Public Sub New ()
Applies to
TaskConstraints(Nullable<TimeSpan>, Nullable<TimeSpan>, Nullable<Int32>)
- Source:
- TaskConstraints.cs
Initializes a new instance of the TaskConstraints class.
public TaskConstraints (TimeSpan? maxWallClockTime = default, TimeSpan? retentionTime = default, int? maxTaskRetryCount = default);
new Microsoft.Azure.Batch.Protocol.Models.TaskConstraints : Nullable<TimeSpan> * Nullable<TimeSpan> * Nullable<int> -> Microsoft.Azure.Batch.Protocol.Models.TaskConstraints
Public Sub New (Optional maxWallClockTime As Nullable(Of TimeSpan) = Nothing, Optional retentionTime As Nullable(Of TimeSpan) = Nothing, Optional maxTaskRetryCount As Nullable(Of Integer) = Nothing)
Parameters
The maximum elapsed time that the Task may run, measured from the time the Task starts. If the Task does not complete within the time limit, the Batch service terminates it.
The minimum time to retain the Task directory on the Compute Node where it ran, from the time it completes execution. After this time, the Batch service may delete the Task directory and all its contents.
The maximum number of times the Task may be retried. The Batch service retries a Task if its exit code is nonzero.
Applies to
Azure SDK for .NET