Versions Compared

Key

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

Table of Contents

...

In order to use new schedule management functionality , then follow the steps below:

  1. If you are going to use FIXICC as a tool for new schedule management, you need to specify the following setting in FIXEdge.properties:

    Code Block
    languagebash
    linenumberstrue
    FIXICC.Schedules = true

    Please use this FIXICC manual for details regarding new schedule management functionality available in FIXICC.

  2. If you are not going to use FIXICC in terms of new schedule management functionality or/and you would like to configure sessions schedule via configuration file, you may ignore "FIXICC.Schedules" property. Here are the steps which should be performed to configure the schedule via FIXEdge.properties:

...

Note

CRON has the following syntax:

┌──────────── second (0 - 59)
│ ┌───────────── minute (0 - 59)
| │ ┌───────────── hour (0 - 23)
| │ │ ┌───────────── day of month (1 - 31)
| │ │ │ ┌───────────── month (1 - 12)
| │ │ │ │ ┌───────────── day of week (1 - 7: Sunday to Saturday)
| │ │ │ │ │
│ │ │ │ │ │
│ │ │ │ │ │
* * * * * *

Support of the CRON expressions is limited by quartz. In particular, specifying both a day-of-week and a day-of-month values is prohibited (you'll need to use the '*' character in one of these fields).

The only note here is that '*' character is used instead of '?' character in compare with quartz.

...