Table of Contents

Class JobGroupDefinition

Namespace
JobFlow.Models.Jobs.Definitions
Assembly
JobFlow.Models.dll

Defines a group of Jobs that execute in parallel.

public class JobGroupDefinition : JobDefinition
Inheritance
JobGroupDefinition
Inherited Members

Remarks

All Children within the Group must complete before the Group completes.

Constructors

JobGroupDefinition(string)

public JobGroupDefinition(string name)

Parameters

name string

JobGroupDefinition(string, ICollection<JobDefinition>)

public JobGroupDefinition(string name, ICollection<JobDefinition> children)

Parameters

name string
children ICollection<JobDefinition>

Properties

Children

Children for this Job Group.

public ICollection<JobDefinition> Children { get; }

Property Value

ICollection<JobDefinition>

Remarks

All Children Jobs must complete before the Group completes.