Lapin wrapper that encapsulates the use of connections/channels and provides some helpful methods making it easier to use and less error prone.
```rust use amqpmanager::prelude::*; use futures::FutureExt; use tokioamqp::LapinTokioExt;
async fn main() { let poolmanager = LapinConnectionManager::new("amqp://guest:guest@127.0.0.1:5672//", &ConnectionProperties::default().withtokio()); let pool = r2d2::Pool::builder() .maxsize(2) .build(poolmanager) .expect("Should build amqp connection pool"); let amqpmanager = AmqpManager::new(pool).expect("Should create AmqpManager instance"); let amqpsession = amqpmanager.getsession().await.expect("Should create AmqpSession instance");
let queue_name = "queue-name";
let create_queue_op = CreateQueue {
queue_name: queue_name.to_string(),
options: QueueDeclareOptions {
auto_delete: false,
..Default::default()
},
..Default::default()
};
amqp_session.create_queue(create_queue_op.clone()).await.expect("create_queue");
amqp_session
.publish_to_queue(PublishToQueue {
queue_name: queue_name.to_string(),
payload: Bytes::from_static(b"Hello world!"),
..Default::default()
})
.await
.expect("publish_to_queue");
amqp_session
.create_consumer(
CreateConsumer {
queue_name: queue_name.to_string(),
consumer_name: "consumer-name".to_string(),
..Default::default()
},
|delivery: DeliveryResult| async {
if let Ok(Some((channel, delivery))) = delivery {
channel
.basic_ack(delivery.delivery_tag, BasicAckOptions::default())
.map(|_| ())
.await;
}
},
)
.await
.expect("create_consumer");
let queue = amqp_session.create_queue(create_queue_op.clone()).await.expect("create_queue");
assert_eq!(queue.message_count(), 0, "Messages has been consumed");
} ```
The crate is tested on ubuntu-latest
against the following rust versions: nightly, beta, stable and 1.45.0.
It is possible that it works with older versions as well but this is not tested.
Please see the details of the lapin crate about its requirements.