PeerTube/server/lib/schedulers/youtube-dl-update-scheduler.ts

23 lines
559 B
TypeScript
Raw Normal View History

2018-08-02 16:02:51 +02:00
import { AbstractScheduler } from './abstract-scheduler'
import { SCHEDULER_INTERVALS_MS } from '../../initializers'
2018-09-19 16:24:24 +02:00
import { updateYoutubeDLBinary } from '../../helpers/youtube-dl'
2018-08-02 16:02:51 +02:00
export class YoutubeDlUpdateScheduler extends AbstractScheduler {
private static instance: AbstractScheduler
protected schedulerIntervalMs = SCHEDULER_INTERVALS_MS.youtubeDLUpdate
private constructor () {
super()
}
2018-09-19 16:24:24 +02:00
execute () {
return updateYoutubeDLBinary()
2018-08-02 16:02:51 +02:00
}
static get Instance () {
return this.instance || (this.instance = new this())
}
}