Quantum v3.0.2 Quantum.Storage behaviour View Source
Bahaviour to be implemented by all Storage Adapters.
The calls to the storage are blocking, make sure they're fast to not block the job execution.
Link to this section Summary
Types
The location of the server
.
Callbacks
Save new job in storage.
Storage child spec
Delete new job in storage.
Load saved jobs from storage.
Load last execution time from storage.
Purge all date from storage and go back to initial state.
Change Job State from given job.
Update last execution time to given date.
Link to this section Types
Link to this section Callbacks
add_job(storage_pid, job)
View Sourceadd_job(storage_pid :: storage_pid(), job :: Quantum.Job.t()) :: :ok
Save new job in storage.
child_spec(init_arg)
View Sourcechild_spec(init_arg :: Keyword.t()) :: Supervisor.child_spec()
Storage child spec
If the storage does not need a process, specify a function that returns :ignore
.
Values
:scheduler
- The Scheduler
delete_job(storage_pid, job)
View Sourcedelete_job(storage_pid :: storage_pid(), job :: Quantum.Job.name()) :: :ok
Delete new job in storage.
jobs(storage_pid)
View Sourcejobs(storage_pid :: storage_pid()) :: :not_applicable | [Quantum.Job.t()]
Load saved jobs from storage.
Returns :not_applicable
if the storage has never received an add_job
call or after it has been purged.
In this case the jobs from the configuration will be loaded.
last_execution_date(storage_pid)
View Sourcelast_execution_date(storage_pid :: storage_pid()) :: :unknown | NaiveDateTime.t()
Load last execution time from storage.
Returns :unknown
if the storage does not know the last execution time.
In this case all jobs will be run at the next applicable date.
Purge all date from storage and go back to initial state.
update_job_state(storage_pid, job, state)
View Sourceupdate_job_state( storage_pid :: storage_pid(), job :: Quantum.Job.name(), state :: Quantum.Job.state() ) :: :ok
Change Job State from given job.
update_last_execution_date(storage_pid, last_execution_date)
View Sourceupdate_last_execution_date( storage_pid :: storage_pid(), last_execution_date :: NaiveDateTime.t() ) :: :ok
Update last execution time to given date.