2 unstable releases

0.2.0 Feb 14, 2023
0.1.0 Feb 12, 2023

#27 in #async-pool

Download history 5/week @ 2024-02-19 4/week @ 2024-02-26 41/week @ 2024-04-01 15/week @ 2024-04-08 4/week @ 2024-04-15

60 downloads per month

MIT license

7KB
91 lines

deadpool-amqprs

Deadpool for amqprs

Deadpool is a dead simple async pool for connections and objects of any type.

This crate implements a deadpool manager for amqprs.

Example

use deadpool_amqprs::Config;
use amqprs::{callbacks::{DefaultChannelCallback, DefaultConnectionCallback}, connection::OpenConnectionArguments};

#[tokio::main]
async fn main() {
    let config = Config::new_with_con_args(OpenConnectionArguments::default());
    let pool = config.create_pool();
    
    let con = pool.get().await.unwrap();
    con.register_callback(DefaultConnectionCallback).await.unwrap();

    let channel = con.open_channel().await.unwrap();
    channel.register_callback(DefaultChannelCallback).await.unwrap();

    // Do stuff with `channel`.
}

Dependencies

~3–15MB
~145K SLoC