Versions Compared

Key

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

...

Code Block
 repeat day step # only for suites
 repeat integer VARIABLE start end [step]
 repeat enumerated date VARIABLE first [second [third ...]]
 repeat string VARIABLE str1 [str2 ...]
 repeat file VARIABLE filename
 repeat date VARIABLE yyyymmdd yyyymmdd [delta]                     # when used in trigger expression, we use date arithmetic
 repeat datelist YMD 20130101 20130102 20130103 20200101 20190101   # arbitrary list of dates, also uses date arithmetic in trigger expression 


The idea is that the variable given is advanced when the node completes and the node is re-queued (except, of course, when the variable has the last value.)
Day repeats are only available for a suite (tied to clock) in which case an ending date can be given. For this to work the clock type must be hybrid: a real-time suite cannot be stopped by means of end time.

...