JuliaComputing / AMQPClient.jl

A Julia AMQP (Advanced Message Queuing Protocol) / RabbitMQ Client.
Other
39 stars 21 forks source link

queue_declare now returns also the queue name as it should according … #20

Closed phinzphinz closed 4 years ago

phinzphinz commented 5 years ago

…to the function documentation

I needed this to obtain the auto generated queue name. Now it is possible to do the following

julia> res = queue_declare(chan1,"";exclusive=true)
(true, "amq.gen-_P2yvrTGqpYCOJJ0QXFOYg", 0, 0)

Before, you could not get the second entry of the above 4-tuple.

tanmaykm commented 5 years ago

Thanks! CI tests may have failed for some other reason (connection failed?). Will try and take a look at it.