asynq 0.1.8

Simple, reliable & efficient distributed task queue in Rust, inspired by hibiken/asynq
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! PostgresSQL 经纪人模块
//! PostgresSQL broker module
//!
//! 定义了与 PostgresSQL 交互的抽象层
//! Defines the abstraction layer for interacting with PostgresSQL

mod broker;
pub mod entity;
pub mod postgres_broker;
pub mod postgres_inspector;

pub use entity::*;
pub use postgres_broker::PostgresBroker;
pub use postgres_inspector::PostgresInspector;