schedule

Description

Add schedules to a given scheduler. The schedules provided are as specified in scheduler. This job provides more freedom as to when things are scheduled than specifying schedules as part of the scheduler.

Properties

NameDescriptionRequired
name A name, can be any text. No.
schedules A list of schedules to add to the scheduler. Yes.
scheduler A scheduler to add the schedules to. Yes.

Example

 <sequential>
   <scheduler name="Scheduler" id="scheduler"/>
   <folder name="My Jobs">
     <schedule schedule="${scheduler}">
       <schedules>
         <ojschedule id="lunch" name="Lunch Reminder" job="${lunch}">
           <schedule>
             <time from="12:00"/>
           </schedule>
         </ojschedule>
       </schedules>
     </schedule>
     <echo id="lunch" text="Go to Lunch!"/>
   </folder>  
 </sequential>
 


(c) Rob Gordon 2005