ironmq-client 0.1.1

IromMQ client library (AMQP 0.9)
Documentation

Client of ironmq.

Usage

use ironmq_client::*;

async fn client() -> Result<()> {
let conn = connect("127.0.0.1:5672".to_string()).await?;
open(&conn, "/".into()).await?;
channel_open(&conn, 1).await?;
basic_publish(&conn, 1, "exchange", "routing", "Hello".into()).await?;
close(&conn).await?;

Ok(())
}