pulses 0.2.0

A robust, high-performance background job processing library for Rust.
Documentation
1
2
3
4
5
6
7
//! Broker backends.
//!
//! Each backend implements [`Broker`](crate::Broker). The Redis Streams backend
//! is available behind the default `redis` feature.

#[cfg(feature = "redis")]
pub mod redis;