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

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

include!("local_queue/common.rs");
#[path = "local_queue/basic.rs"]
mod basic;
#[path = "local_queue/distribution.rs"]
mod distribution;
#[path = "local_queue/multi_queue.rs"]
mod multi_queue;
#[path = "local_queue/refetch.rs"]
mod refetch;
#[path = "local_queue/shutdown_ttl.rs"]
mod shutdown_ttl;