method() = get | post
response() = {ok, map() | list()} | {error, integer(), binary()} | {error, term()}
route() = string() | {string(), list()}
get_queue/2 | Returns details about the provided queue. |
get_queue_bindings/2 | Returns the bindings declared on the provided queue. |
get_queue_bindings/3 | Returns the bindings in an exchange declared on the provided queue. |
get_queues/1 | Returns the queues declared on the provided connection. |
request/3 | Equivalent to kyu_management:request(Method, Connection, Route, <<>>). |
request/4 | Makes a request to the RabbitMQ management HTTP API. |
get_queue(Connection::kyu_connection:name(), Queue::binary()) -> response()
Returns details about the provided queue. This function respects the virtual_host option of the connection.
get_queue_bindings(Connection::kyu_connection:name(), Queue::binary()) -> response()
Returns the bindings declared on the provided queue. This function respects the virtual_host option of the connection.
get_queue_bindings(Connection::kyu_connection:name(), Queue::binary(), Exchange::binary()) -> response()
Returns the bindings in an exchange declared on the provided queue. This function respects the virtual_host option of the connection.
get_queues(Connection::kyu_connection:name()) -> response()
Returns the queues declared on the provided connection. This function respects the virtual_host option of the connection.
request(Method::method(), Connection::kyu_connection:name(), Route::route()) -> response()
Equivalent to kyu_management:request(Method, Connection, Route, <<>>).
request(Method::method(), Connection::kyu_connection:name(), Route::route(), Body::map() | list() | binary()) -> response()
Makes a request to the RabbitMQ management HTTP API.
Generated by EDoc