aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/lib/schedulers/abstract-scheduler.ts
blob: b9d0a4d177b715a8fac48a6df7108afab49294db (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                                         

                                                


                                


                                                                                    





                                
                     
 
export abstract class AbstractScheduler {

  protected abstract schedulerIntervalMs: number

  private interval: NodeJS.Timer

  enable () {
    if (!this.schedulerIntervalMs) throw new Error('Interval is not correctly set.')

    this.interval = setInterval(() => this.execute(), this.schedulerIntervalMs)
  }

  disable () {
    clearInterval(this.interval)
  }

  abstract execute ()
}