Crates.io | deadpool-amqprs |
lib.rs | deadpool-amqprs |
version | |
source | src |
created_at | 2023-02-12 06:56:08.055147 |
updated_at | 2025-01-10 03:14:06.273174 |
description | Dead simple async pool for amqprs |
homepage | |
repository | https://github.com/Cryptex-github/deadpool-amqprs |
max_upload_size | |
id | 782872 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
Deadpool is a dead simple async pool for connections and objects of any type.
This crate implements a deadpool
manager for amqprs
.
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`.
}