Reid Morrison
Reid Morrison
> @reidmorrison please read the following Contributor License Agreement(CLA). If you agree with the CLA, please reply with the following information. > > ``` > @microsoft-github-policy-service agree [company="{your company}"] >...
The age old challenge of what to do when a server connection is lost. In Rails ActiveRecord performs a `ping` on the database connection every time it gets a connection...
I agree, there has to be a better way to determine connection loss early. Ideally without having to resort to the `on_exception` callback. This will be an interesting challenge.
After the refactor in master this should not be hard to do at all. The hardest part is writing the tests. It would need a test server in Ruby that...
The re-factoring of master has settled down and we can now look at additional support such as `SOCKSSocket`. Do you have any thoughts on how we can specify the server...
The following should now work, please test it and let me know if it works. ``` ruby client = Net::TCPClient.new( server: 'server1:2000', proxy_server: 'proxy1:2340' ) ```
Any takers to help create a pull request to solve the above issue?
RubyWMQ is no longer under active development. Pull Requests for new features / bug fixes will be accepted though.
Good point, does not look like the API takes into consideration the use case where we just want call `socket.read` and just read everything until the socket is closed. Can...
Want to submit a pull request adding both capabilities?