TaskDependencies Constructor

Definition

Initializes a new instance of the TaskDependencies class.

C#
public TaskDependencies(System.Collections.Generic.IEnumerable<string> taskIds, System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.TaskIdRange> taskIdRanges);

Parameters

taskIds
IEnumerable<String>

The list of task ids that must complete before this task can be scheduled. null is treated as an empty list.

taskIdRanges
IEnumerable<TaskIdRange>

The list of task ranges that must complete before this task can be scheduled. null is treated as an empty list.

Remarks

This constructor provides the most general way of initializing a TaskDependencies object. In practice, most dependencies are on a single task, a list of task ids, or a single range of tasks. You can express these dependencies more clearly using OnId(String), OnIds(String[]), OnTasks(CloudTask[]), and OnIdRange(Int32, Int32) methods.

Applies to

Product Versions
Azure SDK for .NET Latest