stomp-rs v0.10.0 Release Notes

Release Date: 2015-05-27 // almost 9 years ago
    • stomp-rs can now be used with rustc's stable channel
    • 🔧 Introduced automatic reconnect; in the event that the connection with the server is lost, the client will stop processing and attempt to re-establish it. Once the connection is up, all of the previous subscriptions will be re-established. Work is planned to make this configurable: #85.
    • Created and incorporated the Lifeguard object pool to re-use Strings and Vecs rather than allocating new ones. Benchmarks with perf and valgrind show a marked improvement.