TaskConstraints Constructors

Definition

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

maxWallClockTime
Nullable<TimeSpan>

The maximum elapsed time that the task may run, measured from the time the task starts.

retentionTime
Nullable<TimeSpan>

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.

maxTaskRetryCount
Nullable<Int32>

The maximum number of retries for the task.

Applies to