• PRODUCTS
  • SUPPORT
  • DOCS
  • PARTNERS
  • COMPANY
  • QUOTE
  • ACCOUNT
  • STORE
QUOTE

Documentation

Support Forums
What can we help you with?
Show / Hide Table of Contents

Enum AdfGroupActivityDependencyMode

Namespace: Varigence.Languages.Biml.DataFactory
Assembly: Biml.dll
C#
    public enum AdfGroupActivityDependencyMode
    
  
Inheritance

Fields

Name Description
LinearOnCompleted

LinearOnCompleted will automatically create Completed dependencies so that activities will run one after the other in the order that they are specified in the Biml. LinearOnCompleted is primarily useful for scripting scenarios where creating activity dependencies would be tedious.

LinearOnFailed

LinearOnFailed will automatically create Failed dependencies so that activities will run one after the other in the order that they are specified in the Biml. LinearOnFailed is primarily useful for scripting scenarios where creating activity dependencies would be tedious.

LinearOnSkipped

LinearOnSkipped will automatically create Skipped dependencies so that activities will run one after the other in the order that they are specified in the Biml. LinearOnSkipped is primarily useful for scripting scenarios where creating activity dependencies would be tedious.

LinearOnSucceeded

LinearOnSucceeded will automatically create Succeeded dependencies so that activities will run one after the other in the order that they are specified in the Biml. LinearOnSucceeded is primarily useful for scripting scenarios where creating activity dependencies would be tedious.

Parallel

Parallel specifies that all activities will run concurrently.