Replies: 2 comments 3 replies
-
Updating a queue involves deleting it and re-creating it, which you can do from this library. This is a very rare thing to do, however. By "retrieving" I assume you mean these operations:
Depending on what you want to do, yes. None of the RabbitMQ AMQP 0.9.1 client libraries support the operations that the HTTP API provides. |
Beta Was this translation helpful? Give feedback.
-
I'll take a wild guess that this has to do with seeding a large-ish topology. There's already a library and programming language-neutral solution that has been around for over a decade. |
Beta Was this translation helpful? Give feedback.
-
Am I doing/thinking wrong?
Why is there no basic functionality in RabbitMQ-Client-[dotnet|java] such as: list queues, list queue bindings?
Shouldn't the client support all the basic CRUD functionality for a queue/exchange?
I'm looking for functionality within IModel, which is where Create(QueueDeclare / ExchangeDeclare) and Delete(QueueDelete...) are, but where are the Retrieve and Update functionality from CRUD? Would it just be through the API? /api/queues and /api/exchanges?
Beta Was this translation helpful? Give feedback.
All reactions