2018-02-27 07:46:56 -05:00
|
|
|
import { isTestInstance } from '../../helpers/core-utils'
|
2018-02-27 05:08:59 -05:00
|
|
|
import { logger } from '../../helpers/logger'
|
2018-01-25 09:05:18 -05:00
|
|
|
import { JobQueue } from '../job-queue'
|
|
|
|
import { AbstractScheduler } from './abstract-scheduler'
|
2019-04-11 08:26:41 -04:00
|
|
|
import { SCHEDULER_INTERVALS_MS } from '../../initializers/constants'
|
2018-01-25 09:05:18 -05:00
|
|
|
|
|
|
|
export class RemoveOldJobsScheduler extends AbstractScheduler {
|
|
|
|
|
|
|
|
private static instance: AbstractScheduler
|
|
|
|
|
2018-06-14 12:06:56 -04:00
|
|
|
protected schedulerIntervalMs = SCHEDULER_INTERVALS_MS.removeOldJobs
|
|
|
|
|
2018-01-25 09:05:18 -05:00
|
|
|
private constructor () {
|
|
|
|
super()
|
|
|
|
}
|
|
|
|
|
2018-12-20 08:31:11 -05:00
|
|
|
protected internalExecute () {
|
|
|
|
if (!isTestInstance()) logger.info('Removing old jobs in scheduler.')
|
2018-02-27 05:08:59 -05:00
|
|
|
|
2018-12-20 08:31:11 -05:00
|
|
|
return JobQueue.Instance.removeOldJobs()
|
2018-01-25 09:05:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static get Instance () {
|
|
|
|
return this.instance || (this.instance = new this())
|
|
|
|
}
|
|
|
|
}
|