wae-queue 0.0.2

WAE Queue - 消息队列抽象层,支持内存队列、Redis 和 RabbitMQ
Documentation
1
2
3
4
5
6
7
//! 队列后端实现模块

#[cfg(feature = "kafka-backend")]
pub mod kafka;
pub mod memory;
#[cfg(feature = "redis-backend")]
pub mod redis;