Scheduled tasks

Scheduled tasks in Omnium are configured by adding a scheduled task setting to ScheduledTaskSettings.

Scheduling is controlled by a cron schedule:

 ┌───────────── minute (0 - 59)
 │ ┌───────────── hour (0 - 23)
 │ │ ┌───────────── day of the month (1 - 31)
 │ │ │ ┌───────────── month (1 - 12)
 │ │ │ │ ┌───────────── day of the week (0 - 6) (Sunday to Saturday)
 │ │ │ │ │
 │ │ │ │ │
 │ │ │ │ │
 * * * * *

Scheduled task setting

PropertyTypeDescriptionInformation
SchedulestringScheduling of job (crontab format)
ImplementationTypestringScheduled task implementation class
IsDisabledboolTrue if scheduled task is temporarily disabled

Scheduled task setting samples

Scheduled task for getting new Magento orders

The job is running every minute.

{
    "ImplementationType": "MagentoOrderScheduledTask",
    "Schedule": "*/1 * * * *",
    "IsDisabled": false
}

Scheduled task for fetching invoices from TripleTex

The job is running every 30th minute.

{
    "ImplementationType": "TripleTexScheduledTask",
    "Schedule": "30 * * * *"
}

Scheduled task for exporting products to Nosto

The job is running every 6th hour.

{
    "ImplementationType": "NostoExportScheduledTask",
    "Schedule": "0 */6 * * *",
    "IsDisabled": true,
    "Properties": [
        {
            "Key": "SiteUrl",
            "Value": "http://omniumbikeshop.azurewebsites.net/"
        }
    ]
}

On this page