graphile_worker 0.13.3

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
17
18
#![allow(unused_imports)]

#[path = "helpers/mod.rs"]
mod helpers;

include!("run_once/common.rs");
#[path = "run_once/basic.rs"]
mod basic;
#[path = "run_once/concurrency.rs"]
mod concurrency;
#[path = "run_once/queues.rs"]
mod queues;
#[path = "run_once/removal.rs"]
mod removal;
#[path = "run_once/retry.rs"]
mod retry;
#[path = "run_once/scheduling.rs"]
mod scheduling;