stompgem / stomp

A ruby gem for sending and receiving messages from a Stomp protocol compliant message queue. Includes: failover logic, ssl support.
http://stomp.github.com
Apache License 2.0
152 stars 80 forks source link

URL options not supported when passing URL to client #173

Open himanshugoyal-git opened 3 years ago

himanshugoyal-git commented 3 years ago

stomp://host:port stomp://host.domain.tld:port stomp://login:passcode@host:port stomp://login:passcode@host.domain.tld:port

e.g. c = Stomp::Client.new(urlstring)

Is there a way to pass info of protocol, redelivery options in URL itself?

Even when we are using the hash to connect, there is no mention of redelivery options? Is it possible over stomp?

We tried to get an answer on stack overflow for this, but unfortunately there is a little activity around it.