TaskDependencies Constructor
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.
Initializes a new instance of the TaskDependencies class.
public TaskDependencies (System.Collections.Generic.IEnumerable<string> taskIds, System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.TaskIdRange> taskIdRanges);
new Microsoft.Azure.Batch.TaskDependencies : seq<string> * seq<Microsoft.Azure.Batch.TaskIdRange> -> Microsoft.Azure.Batch.TaskDependencies
Public Sub New (taskIds As IEnumerable(Of String), taskIdRanges As IEnumerable(Of TaskIdRange))
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.