[Index]

folder


Holds a collection of jobs but does not execute them. Used to collect and organise jobs. The jobs can either be scheduled by a scheduler or run manually.

A folder has no state, it can't be run and it can't be stopped.


Property Summary

jobs The jobs.
name The name of the folder.

Example Summary

Example 1 A folder of jobs.

Property Detail

jobs

Configured ByELEMENT
AccessWRITE_ONLY
RequiredNo.

The jobs.

name

Configured ByATTRIBUTE
AccessREAD_WRITE
RequiredNo.

The name of the folder.


Examples

Example 1

A folder of jobs.

<folder name="My Jobs">
    <jobs>
        <exec name="Morning Job">echo "Good Morning"</exec>
        <exec name="Afternoon Job">echo "Good Afternoon"</exec>
        <exec name="Evening Job">echo "Good Evening"</exec>
    </jobs>
</folder>


(c) Rob Gordon 2005 - 2017