doitlater 0.5.0

A simple Redis based background jobs queue.
Documentation
1
2
3
4
5
6
use crate::Executable;

pub struct ScheduledJob {
    pub schedule: String,
    pub create_instance: Box<dyn Fn() -> Box<dyn Executable> + Sync>,
}