mockforge-amqp 0.3.2

AMQP protocol support for MockForge
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! MockForge AMQP (RabbitMQ) Protocol Support
//!
//! This crate provides AMQP 0.9.1 protocol support for MockForge,
//! enabling testing of message queue patterns, pub/sub, and enterprise messaging scenarios.

pub mod bindings;
pub mod broker;
pub mod consumers;
pub mod exchanges;
pub mod fixtures;
pub mod messages;
pub mod protocol;
pub mod queues;
pub mod spec_registry;

pub use broker::AmqpBroker;
pub use spec_registry::AmqpSpecRegistry;