scouter-events 0.21.0

Logic for setting up and running Scouter event-driven consumers and producers
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(any(
    all(feature = "rabbitmq", feature = "sql"),
    all(feature = "kafka", feature = "sql"),
    all(feature = "redis_events", feature = "sql")
))]
pub mod consumer;

pub mod producer;

pub mod queue;

pub mod error;