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
15
16
17
//! SeaORM 实体模块
//! SeaORM entity module
//!
//! 定义了与 PostgresSQL 表对应的实体模型
//! Defines entity models corresponding to PostgresSQL tables

pub mod prelude;
pub mod queues;
pub mod scheduler_entries;
pub mod scheduler_events;
pub mod schedulers;
pub mod servers;
pub mod stats;
pub mod tasks;
pub mod workers;

pub use prelude::*;