doitlater 0.5.0

A simple Redis based background jobs queue.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod error;
pub mod executable;
mod job;
pub mod queue;
mod scheduled_job;
mod scheduler;
pub mod worker;

pub type Result<T> = std::result::Result<T, error::Error>;
pub use error::Error;
pub use executable::{Executable, ExecutableExt};
pub use queue::Queue;
pub use scheduler::Scheduler;
pub use typetag;
pub use worker::Worker;