Job Schedule Strings

The flexible job scheduler has up to 32 jobs that can be used for different purposes (e.g. deliver data; contact update server).

Each job can have eight different time slots (e.g. for different times throughout the week).

Each job schedule is programmed with a string that has the following structure:

  • The primary value is the interval (default is 24 hours)
    • 00:00:15 = every 15 seconds
  • The @ character restricts to a time range (default start time is 00:00:00, and default end time is 24:00:00)
    • @23:00 = at (or from) 11 pm
    • @6:00-23:30 = between 6:00am (inclusive) and 11:30pm.
  • The # character specifies the day bit-field
    • Where: 1 = Sunday, 2 = Monday, 4 = Tuesday, 8 = Wednesday, 16 = Thursday, 32 = Friday, 64 = Saturday
    • #62 = weekdays (2 + 4 + 8 + 16 + 32)
    • #65 = weekends (1 + 64)
    • #d = weekdays, Mon-Fri, same as #62
    • #e = weekends, Sat+Sun, same as #65
    • #a = all days (#127 = 1+2+4+8+16+32+64)
  • A comma (,) separates the entries
Note

The end time is exclusive.
So, for example, 2:00@12:00-18:00 will fire at 12:00, 14:00, and 16:00 only.
This method allows for clarity when changing the interval, say to 0:00:01.

Examples

00:00:30@8-18, 00:05:00
Every 30s between 8am and 6pm,
and 5 minutes outside those times

00:00:30@8-18#2,00:00:45@8-18#60,00:05:00
Every 30s between 8am and 6pm on Monday;
every 45s between 8am and 6pm on Tue-Fri,
and 5 minutes otherwise.

4@8-18,12
Every 4 hours between 8am and 8pm,
and every 12hrs otherwise (00:00:00 & 12:00:00)

@12:30
An event that occurs each day at 12:30pm