28 个版本 (5 个稳定版)
2.0.0 | 2022年2月2日 |
---|---|
1.1.0 | 2022年1月30日 |
1.0.0 | 2020年12月23日 |
0.3.1 | 2020年11月21日 |
0.1.3 | 2020年6月26日 |
#65 in #rabbitmq
5,662 个月下载量
用于 少于 10 crates
340KB
9K SLoC
lapin 与 tokio 的集成
此 crate 通过在 lapin 的内部操作和消费者代理中使用 tokio 的 executor,集成了 lapin 与 tokio。
use tokio_amqp::*;
use lapin::{Connection, ConnectionProperties, Result};
use std::sync::Arc;
use tokio::runtime::Runtime;
async fn tokio_main() -> Result<()> {
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_tokio()).await?; // Note the `with_tokio()` here
let channel = conn.create_channel().await?;
// Rest of your program
}
fn main() {
let rt = Runtime::new().expect("failed to create runtime");
rt.block_on(tokio_main()).expect("error");
}
依赖
~9–21MB
~328K SLoC