TaskSlotCounts 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
TaskSlotCounts() |
Initializes a new instance of the TaskSlotCounts class. |
TaskSlotCounts(Int32, Int32, Int32, Int32, Int32) |
Initializes a new instance of the TaskSlotCounts class. |
TaskSlotCounts()
- Source:
- TaskSlotCounts.cs
Initializes a new instance of the TaskSlotCounts class.
public TaskSlotCounts ();
Public Sub New ()
Applies to
TaskSlotCounts(Int32, Int32, Int32, Int32, Int32)
- Source:
- TaskSlotCounts.cs
Initializes a new instance of the TaskSlotCounts class.
public TaskSlotCounts (int active, int running, int completed, int succeeded, int failed);
new Microsoft.Azure.Batch.Protocol.Models.TaskSlotCounts : int * int * int * int * int -> Microsoft.Azure.Batch.Protocol.Models.TaskSlotCounts
Public Sub New (active As Integer, running As Integer, completed As Integer, succeeded As Integer, failed As Integer)
Parameters
- active
- Int32
The number of TaskSlots for active Tasks.
- running
- Int32
The number of TaskSlots for running Tasks.
- completed
- Int32
The number of TaskSlots for completed Tasks.
- succeeded
- Int32
The number of TaskSlots for succeeded Tasks.
- failed
- Int32
The number of TaskSlots for failed Tasks.
Applies to
Azure SDK for .NET