Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Scheduled Frame Transfers allow scheduling using cron expressions

Cron expressions are a standard for denoting frequencies. They allow you to schedule things to run every minute, every day, as well as more complex scenarios such as every monday at midnight, or the first day of the month, every month.

Examples:

Schedule

Expression

Every minute

* * * * *

Every hour

0 * * * *

Every day (at midnight)

0 0 * * *

Every day (at 9:00am)

0 9 * * *

Every day (at 9:30am)

30 9 * * *

On the first of the month

0 0 1 * *

Every day (at midnight, mon-fri only)

0 0 * * 1-5

Every monday (at midnight)

0 0 * * 1

On the first day of every second month

0 0 1 */2 *

Every hour (between 9 and 5)

0 9-17 * * *

  • No labels