AMQPClient.jl
AMQPClient.jl copied to clipboard
A Julia AMQP (Advanced Message Queuing Protocol) / RabbitMQ Client.
Hello, Trying to convert https://www.rabbitmq.com/tutorials/tutorial-one-python.html to Julia (*), I noticed that API of this AMQPClient.jl could probably be improved to accept String / sub-string (ie without creating explicitly a `Message`)...
Hello, ```julia using AMQPClient login, password = "guest", "guest" port = AMQPClient.AMQP_DEFAULT_PORT auth_params = Dict("MECHANISM"=>"AMQPLAIN", "LOGIN"=>login, "PASSWORD"=>password) conn = connection(;virtualhost="/", host="localhost", port=port, auth_params=auth_params) ``` raises the following error ``` ┌...
Hi there, I've been enjoying using this package and am keen to help improve docstrings. My motivation for this is I've been having to check the source code to find...
Communication via fanout exchange works fine. ```julia using AMQPClient ENV["JULIA_DEBUG"] = "all" const HOST = "localhost" const PORT = 5672 const EXCHANGE = "exchange" const AUTH = Dict{String,Any}( "MECHANISM" =>...