[][src]Struct r2d2_lapin::LapinConnectionManager

pub struct LapinConnectionManager { /* fields omitted */ }

An r2d2::ManageConnection for lapin::Connections.

Example

use lapin::ConnectionProperties;
use r2d2_lapin::LapinConnectionManager;
use std::thread;

fn main() {
     
let manager = LapinConnectionManager::new("amqp://guest:guest@127.0.0.1:5672//", &ConnectionProperties::default());
    let pool = r2d2::Pool::builder()
        .max_size(15)
        .build(manager)
        .unwrap();

    for _ in 0..20 {
        let pool = pool.clone();
        thread::spawn(move || {
            let conn = pool.get().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]

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

Example

let manager = OracleConnectionManager::new("user", "password", "localhost");

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, 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.