enragedginger / akka-quartz-scheduler

Quartz Extension and utilities for cron-style scheduling in Akka
Other
559 stars 114 forks source link

Persistance Jobs #119

Closed SarpongAbasimi closed 1 year ago

SarpongAbasimi commented 1 year ago

Hey, I am looking through the source code of akka-quartz-scheduler and came across this line.

  lazy protected val jobStore: JobStore = {
    // TODO - Make this potentially configurable,  but for now we don't want persistable jobs.
    new RAMJobStore()
  }

I am just a bit curious, why was the decision taken to not want persistable jobs.

SarpongAbasimi commented 1 year ago

@enragedginger I am closing this but please feel free to still answer this thanks.

enragedginger commented 1 year ago

Hi @SarpongAbasimi, I inherited this project several years ago after that part of the code was written so I'm unfortunately not familiar with the rationale behind it.