Skip to main content

rustvello_rabbitmq/
lib.rs

1//! RabbitMQ broker backend for Rustvello.
2//!
3//! Provides a [`RabbitMqBroker`] that uses AMQP queues for invocation routing.
4//! This is a broker-only plugin — orchestrator, state backend, trigger store,
5//! and client data store must be provided by another backend (e.g. Redis or SQLite).
6
7pub mod broker;
8mod connection;
9
10pub mod prelude {
11    pub use crate::broker::RabbitMqBroker;
12}