Crates.io | lapinou |
lib.rs | lapinou |
version | 2.0.0 |
source | src |
created_at | 2020-04-14 08:20:31.553 |
updated_at | 2022-02-02 20:03:19.722637 |
description | lapin integration with smol |
homepage | |
repository | https://github.com/amqp-rs/lapin |
max_upload_size | |
id | 229938 |
size | 41,371 |
This crate integrates lapin with smol by using smol's executor inside of lapin for its internal operations and for consumer delegates.
use lapinou::*;
use lapin::{Connection, ConnectionProperties, Result};
fn main() -> Result<()> {
smol::block_on(async {
let addr = std::env::var("AMQP_ADDR").unwrap_or_else(|_| "amqp://127.0.0.1:5672/%2f".into());
let conn = Connection::connect(&addr, ConnectionProperties::default().with_smol()).await?; // Note the `with_smol()` here
let channel = conn.create_channel().await?;
// Rest of your program
})
}