Crate actix_jobs

Crate actix_jobs 

Source

Structs§

Scheduler
A scheduler can schedule jobs. Add the jobs to the scheduler and then call run to run the jobs.

Traits§

Job
A trait for jobs that can be scheduled. The cron method should return a cron expression that defines when the job should run. The run method will be called when the job is scheduled to run.

Functions§

run_forever