broccoli_queue 0.4.6

Broccoli is a simple, fast, and reliable job queue for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// Contains the generic interfaces for brokers
pub mod broker;
/// Contains functions to connect to a broker
pub(crate) mod connect;
/// Contains the `RabbitMQ` broker implementation
#[cfg(feature = "rabbitmq")]
pub mod rabbitmq;
/// Contains the Redis broker implementation
#[cfg(feature = "redis")]
pub mod redis;
/// Contains the `SurrealDB` broker implementation
#[cfg(feature = "surrealdb")]
pub mod surrealdb;

#[cfg(feature = "management")]
/// Contains the management interface for brokers
pub mod management;