[][src]Struct bb8_lapin::LapinConnectionManager

pub struct LapinConnectionManager { /* fields omitted */ }

A bb8::ManageConnection implementation for lapin::Connections.

Example

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.
        });
    }
}

Implementations

impl LapinConnectionManager[src]

pub fn new(amqp_address: &str, conn_properties: ConnectionProperties) -> Self[src]

Initialize the connection manager with the data needed to create new connections. Refer to the documentation of lapin::ConnectionProperties for further details on the available connection parameters.

Example

let manager = bb8_lapin::LapinConnectionManager::new("amqp://guest:guest@127.0.0.1:5672//", lapin::ConnectionProperties::default());

Trait Implementations

impl Debug for LapinConnectionManager[src]

impl ManageConnection for LapinConnectionManager[src]

type Connection = Connection

The connection type this manager deals with.

type Error = Error

The error type returned by Connections.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.