Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Using a schedule the run-time is located in a single configuration element:

Code Block
languagexml
 <schedule name="every_day_at_10pm">
    <period  single_start="22:00"/>
 </schedule>

The order will reference this schedule as follows:

Code Block
languagexml
 <order ...>
    ...
    <run_time schedule="every_day_at_10pm"/>
 </order> 

Now it is possibile to substitute the schedule every_day_at_10pm by another schedule for a specific time range. For our purpose we need a schedule that produces no run-time:

Code Block
languagexml
 <schedule substitute="every_day_at_10pm" valid_from="2013-01-01 00:00:00" valid_to="2013-01-01 01:00:00" name="manual_start"/>

...