5 releases (3 breaking)

0.5.0 Mar 28, 2023
0.4.0 Apr 1, 2022
0.3.0 Apr 1, 2022
0.1.1 Oct 4, 2020
0.1.0 Oct 4, 2020

#626 in Asynchronous

Download history 134/week @ 2023-12-18 25/week @ 2023-12-25 149/week @ 2024-01-01 251/week @ 2024-01-08 180/week @ 2024-01-15 241/week @ 2024-01-22 317/week @ 2024-01-29 312/week @ 2024-02-05 421/week @ 2024-02-12 298/week @ 2024-02-19 333/week @ 2024-02-26 256/week @ 2024-03-04 217/week @ 2024-03-11 191/week @ 2024-03-18 305/week @ 2024-03-25 330/week @ 2024-04-01

1,048 downloads per month

MIT license

15KB
54 lines

docs crates.io-version tests audit crates.io-license

Lapin support for the bb8 connection pool.

Usage

See the documentation of bb8 for the details on how to use the connection pool.

use bb8_lapin::prelude::*;

async fn example() {
    let manager = LapinConnectionManager::new("amqp://guest:guest@127.0.0.1:5672//", ConnectionProperties::default());
    let pool = bb8::Pool::builder()
        .max_size(15)
        .build(manager)
        .await
        .unwrap();
    for _ in 0..20 {
        let pool = pool.clone();
        tokio::spawn(async move {
            let conn = pool.get().await.unwrap();
            // use the connection
            // it will be returned to the pool when it falls out of scope.
        });
    }
}

See files in the examples folder for more examples.

Build-time Requirements

The crate is tested on ubuntu-latest against the nightly and stable rust versions. It is possible that it works with older versions as well but this is not tested. Please see the details of the bb8 and lapin crates about their requirements.

Dependencies

~11–24MB
~361K SLoC