Every
pulse.every(interval, names, data?, options?)
pulse.every(interval, names, data?, options?)Example Usage
const pulse = new Pulse();
pulse.start()
// Set a custom sort order for job processing
pulse.every('1 day', 'dailyReport', { reportId: 123 });
// Schedule multiple jobs to run every 30 minutes
pulse.every('30 minutes', ['updateCache', 'refreshData'], null, { skipImmediate: true });Parameters
Returns
Last updated