Condividi tramite


TaskConstraints Constructors

Definition

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

maxWallClockTime
Nullable<TimeSpan>

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.

retentionTime
Nullable<TimeSpan>

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.

maxTaskRetryCount
Nullable<Int32>

The maximum number of times the Task may be retried. The Batch service retries a Task if its exit code is nonzero.

Applies to