 | JobConfigurationGetTotalTaskCount(IListStageConfiguration, Int32) Method |
Gets the total number of tasks in a particular child stage.
Namespace: Ookii.Jumbo.Jet.JobsAssembly: Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic static int GetTotalTaskCount(
IList<StageConfiguration> stages,
int start
)
Public Shared Function GetTotalTaskCount (
stages As IList(Of StageConfiguration),
start As Integer
) As Integer
public:
static int GetTotalTaskCount(
IList<StageConfiguration^>^ stages,
int start
)
static member GetTotalTaskCount :
stages : IList<StageConfiguration> *
start : int -> int
Parameters
- stages IListStageConfiguration
- A list of pipelined stages, as returned by GetPipelinedStages(String).
- start Int32
- The index in stages at which to start.
Return Value
Int32The number of tasks that will be created for the pipelined stages, which is the product of the number of tasks in each stage in the compound ID.
See Also