And
    • Dark
      Light

    And

    • Dark
      Light

    Article Summary

    And Component

    The "And" orchestration component waits for all of its inputs to complete before continuing the job. The order the input components run in is irrelevant, since they must all complete before the job continues beyond the "And" component.

    Only the Name property can be configured to provide a meaningful description of the component.

    NOTE: Any Copied variables that exist in the workflow when going through the And component will be reset to the values they held at the beginning of the job; unless the current job is being called from another job, the variable in question will be reset to its default value. This is to prevent the need to resolve two potentially different values of a Copied variable when two parallel workflows meet the And component. If this is not the case for your workflow, consider using Shared variables instead.

    For similar flow components, see If Component and Or Component.

    Properties

    PropertySettingDescription
    NameTextA human-readable name for the component.

    Example

    In this example, we need to ensure that all input data is reloaded before the job that transforms that data is started.

    The name can be set to a custom value.


    What's Next