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() |
Default constructor to support mocking the TaskConstraints class. |
TaskConstraints(Nullable<TimeSpan>, Nullable<TimeSpan>, Nullable<Int32>) |
Initializes a new instance of the TaskConstraints class. |
TaskConstraints()
- Source:
- TaskConstraints.cs
Default constructor to support mocking the TaskConstraints class.
protected TaskConstraints ();
Protected 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.TaskConstraints : Nullable<TimeSpan> * Nullable<TimeSpan> * Nullable<int> -> Microsoft.Azure.Batch.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.
The minimum time to retain the working directory for the task on the compute node where it ran, from the time it completes execution. After this time, the Batch service may delete the working directory and all its contents.