Yet another RabbitMQ client implementation in rust with different design goals.
The library is accepted to list in RabbitMQ official website.
It's probably the best performance among existing Rust clients. See Benchmarks.
```rust // open a connection to RabbitMQ server let connection = Connection::open(&OpenConnectionArguments::new( "localhost", 5672, "user", "bitnami", )) .await .unwrap(); connection .register_callback(DefaultConnectionCallback) .await .unwrap();
// open a channel on the connection let channel = connection.openchannel(None).await.unwrap(); channel .registercallback(DefaultChannelCallback) .await .unwrap();
// declare a queue let (queuename, _, _) = channel .queuedeclare(QueueDeclareArguments::default()) .await .unwrap() .unwrap();
// bind the queue to exchange let rountingkey = "amqprs.example"; let exchangename = "amq.topic"; channel .queuebind(QueueBindArguments::new( &queuename, exchangename, rountingkey, )) .await .unwrap();
////////////////////////////////////////////////////////////////// // start consumer with given name let args = BasicConsumeArguments::new( &queuename, "examplebasicpubsub" );
channel .basicconsume(DefaultConsumer::new(args.noack), args) .await .unwrap();
////////////////////////////////////////////////////////////////// // publish message let content = String::from( r#" { "publisher": "example" "data": "Hello, amqprs!" } "#, ) .into_bytes();
// create arguments for basicpublish let args = BasicPublishArguments::new(exchangename, rounting_key);
channel .basic_publish(BasicProperties::default(), content, args) .await .unwrap();
// channel/connection will be closed when drop.
// keep the channel
and connection
object from dropping
// before pub/sub is done.
time::sleep(time::Duration::from_secs(1)).await;
// explicitly close
channel.close().await.unwrap();
connection.close().await.unwrap();
```
tracing
in the library.panic
if any non-compliance.
If disabled, then it relies on server to reject.Testing depends on RabbitMQ docker container.
```bash
./start_rabbitmq.sh
./regression_test.sh
RUSTLOG=debug ./regressiontest.sh ```
Community Feedbacks
I've put amqprs in production and it's working very nicely so far! I've had spikes of publish and delivery over 10k msg/sec without breaking a sweat
We usually add new clients after they get some traction in the community. But this client seems to be fairly well documented and I like the API (it is a bit complicated with some other Rust clients)