|
|||
Understanding TreeSchedHave a look at these example Treesched configurations. These configurations can be seen included in a Ant example in the examples directory where they run with this output. TreeSched works by supporting branches of schedules. Each branch can contain more branches, with each level defining ever decreasing intervals of time. Most of the time a shchedule will be a single branch, such as: <schedule> <dayofweek on="mon"> <time from="08:00" to="14:00"/> </dayofweek> </schedule> But there is no limit to how complicated the 'tree' of schedules an become. <schedule> <dayofweek on="mon"> <time from="08:00" to="14:00"/> </dayofweek> <dayofweek on="tue"> <time from="08:00" to="09:00"/> <time from="14:00" to="15:00"/> </dayofweek> </schedule> For more examples look in the |
|||