vert-x3 / vertx-rabbitmq-client

Vert.x RabbitMQ Service
Apache License 2.0
73 stars 64 forks source link

Basic publish should use AMQP.BasicProperties and Buffer instead of JsonObject #83

Closed vietj closed 5 years ago

vietj commented 5 years ago

Currently the client provides a JsonObject for publishing that is converted to AMQP.BasicProperties and a byte[] for the body.

We replace this method with the actual types instead of wrapping them.

This is a breaking change.