graphile_worker_lifecycle_hooks 0.3.0

Lifecycle hooks for graphile_worker, a high performance Rust/PostgreSQL job queue
Documentation
1
2
3
4
5
use crate::HookRegistry;

pub trait Plugin: Send + Sync + 'static {
    fn register(self, hooks: &mut HookRegistry);
}