3

I can't seem to find any information in the documentation so I was wondering if it was somehow possible to get all the bindings related to an exchange using the java RabbitMQ API.

I'm looking for something like the http api result when querying /api/bindings.

yenox
  • 335
  • 5
  • 17
  • 1
    If by java RabbitMQ API you mean the Java AMQP client, then no. Bindings can only be listed via the management plugin, or by running rabbitmqctl on the command line. Of course you can write a Java library for querying the HTTP API – old_sound Mar 13 '15 at 17:09
  • Yes, that's what I meant, thank you. – yenox Mar 16 '15 at 16:55

1 Answers1

1

/api/definitions is the API endpoint to get list of definitions including exchanges, queues, bindings, users, virtual hosts, permissions and parameters.

https://pulse.mozilla.org/api/

Aage
  • 5,932
  • 2
  • 32
  • 57
Sugumar T
  • 11
  • 2