rabbit_borough 0.1.3-beta

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
/// 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;