archimedes 0.4.0

High performance Rust/PostgreSQL job queue (also suitable for getting jobs generated by PostgreSQL triggers/functions out into a different work queue)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod builder;
pub mod errors;
mod helpers;
mod runner;
mod sql;
mod streams;
mod utils;

pub use crate::sql::add_job::JobSpec;
pub use archimedes_crontab_parser::parse_crontab;
pub use archimedes_macros::task;
pub use archimedes_task_handler::*;

pub use builder::{WorkerBuildError, WorkerOptions};
pub use helpers::WorkerHelpers;
pub use runner::{Worker, WorkerContext};