This crate integrates lapin with tokio by using tokio's executor inside of lapin for its internal operations and for consumer delegates.
``` use tokio_amqp::*; use lapin::{Connection, ConnectionProperties, Result}; use std::sync::Arc; use tokio::runtime::Runtime;
async fn tokiomain(rt: Arcwith_tokio()
here
let channel = conn.create_channel().await?;
// Rest of your program
}
fn main() { let rt = Arc::new(Runtime::new().expect("failed to create runtime")); rt.blockon(tokiomain(rt.clone())).expect("error"); } ```