Versions Compared

    Key

    • This line was added.
    • This line was removed.
    • Formatting was changed.
    Comment: Published by Scroll Versions from this space and version 1.0

    ...

    Triggers can be logically AND'd or OR'd, use and the boolean operators operators are:

    1. AND, &&

    ...

    1.  
    2. OR, ||

    ...

    1. ( )  - not supported when using the job dependency attribute
    Note

    The dependency language (used when setting a job's dependency attribute) uses a limited set of boolean operators, only AND and OR. The convention for the dependency language is to provide a comma-separated list of dependencies, such as: link-complete-work-3927,link-complete-work-3928, these are '&&'d together.

    Examples

    When this job completes:

    complete-job-self

    ...

    When I complete and my parent completes:

    complete-job-self && AND complete-job-parent

    When the job labeled "sibling" starts running, and I am done:

    running-job-sibling && AND done-job-self

    See Also

    Trigger Event Syntax