Cron mixin Node-Cron.
Easy to use cron with moleculer!
$ npm install @r2d2bzh/moleculer-cron --save
Specify all of your cron task inside of the constructor of the addon.
const Cron = require("@r2d2bzh/moleculer-cron");
broker.createService({
name: "cron-job",
mixins: [Cron],
crons: [
{
name: "JobHelloWorld",
cronTime: '* * * * *',
onTick: function() {
console.log('JobHelloWorld ticked');
this.getLocalService("cron-job")
.actions.say()
.then((data) => {
console.log("Oh!", data);
});
},
runOnInit: function() {
console.log("JobHelloWorld is created");
},
manualStart: true,
timeZone: 'America/Nipigon'
},
{
name: "JobWhoStartAnother",
cronTime: '* * * * *',
onTick: function() {
console.log('JobWhoStartAnother ticked');
const job = this.getJob("JobHelloWorld");
if (!job.lastDate()) {
job.start();
} else {
console.log("JobHelloWorld is already started!");
}
},
runOnInit: function() {
console.log("JobWhoStartAnother is created");
},
timeZone: 'America/Nipigon'
}
],
actions: {
say: {
handler(ctx) {
return "HelloWorld!";
}
}
}
});
Asterisk. E.g. *
Ranges. E.g. 1-3,5
Steps. E.g. */2
Read up on cron patterns here. Note the examples in the link have five fields, and 1 minute as the finest granularity, but this library has six fields, with 1 second as the finest granularity.
When specifying your cron values you'll need to make sure that your values fall within the ranges. For instance, some cron's use a 0-7 range for the day of week where both 0 and 7 represent Sunday. We do not.
- Seconds: 0-59
- Minutes: 0-59
- Hours: 0-23
- Day of Month: 1-31
- Months: 0-11 (Jan-Dec)
- Day of Week: 0-6 (Sun-Sat)
Parameter Based
-
Cron
cronTime
- [REQUIRED] - The time to fire off your job. This can be in the form of cron syntax or a JS Date object.onTick
- [REQUIRED] - The function to fire at the specified time.name
- [OPTIONAL] - Set a name to the job, will be automaticly generated if you don't set itonComplete
- [OPTIONAL] - A function that will fire when the job is complete, when it is stopped.manualStart
- [OPTIONAL] - Specifies whether to start the job just before exiting the constructor. By default this is set to false. If left at default you will need to calljob.start()
in order to start the job (assumingjob
is the variable you set the cronjob to). This does not immediately fire youronTick
function, it just gives you more control over the behavior of your jobs.timeZone
- [OPTIONAL] - Specify the timezone for the execution. This will modify the actual time relative to your timezone. If the timezone is invalid, an error is thrown. You can check all timezones available at Moment Timezone Website.runOnInit
- [OPTIONAL] - This will be fired onstart()
function as soon as the requisit initialization has happened.
-
CronJob
start
- Runs your job.stop
- Stops your job.setTime
- Change the time for theCronJob
. Param must be aCronTime
fromgetCronTime
.lastDate
- Tells you the last execution date.nextDates
- Provides an array of the next set of dates that will trigger anonTick
.addCallback
- Allows you to addonTick
callbacks.
-
getCronTime(time)
- Return a CronTime instance
time
- [REQUIRED] - The time to fire off your job. This can be in the form of cron syntax or a JS Date object.
- Return a CronTime instance