ramqp 0.6.6

Async AMQP 1.0 client for Rust on tokio — connects to RabbitMQ 4.x, ActiveMQ Artemis, and other AMQP 1.0 brokers.
Documentation
1
2
3
4
5
6
7
8
//! Resilience (Phase 6): the reconnect supervisor and the connection pool.

pub mod pool;
pub mod supervisor;
pub mod transparent;

pub use pool::{Pool, PoolBuilder};
pub use supervisor::{Backoff, connect_with_retry};