rabbit_borough 0.1.7

Create a RabbitMQ consumer project with minimal effort, by bypassing templating, configuration and complicated resiliency logic
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// This module allows you to configure your consumer
/// * The optional reader
/// * The model for setting up your project configuration
pub mod configuration;

/// This module has everything you need to create a consumer
/// * Connection Manager (connection_manager)
/// * AMQP Setup (setup)
/// * Setting up a consumer (consumer)
/// * Handling the outcome of a Message
pub mod consumer;

/// This module has everything you need to create a publisher
/// The publisher creates a one use connection for each message
/// after sending a message the connection is getting disposed
pub mod publisher;