graphile_worker_task_handler 0.5.19

A library to handle tasks for the Graphile Worker project
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod batch;
mod definition;
mod outcome;
mod runner;
mod task;

pub use batch::BatchTaskHandler;
pub use batch::BatchTaskResult;
pub use batch::IntoBatchTaskHandlerResult;
pub use definition::JobDefinition;
pub use outcome::TaskHandlerFn;
pub use outcome::TaskHandlerOutcome;
pub use runner::run_task_from_worker_ctx;
pub use task::IntoTaskHandlerResult;
pub use task::TaskHandler;