stomp-rs icon indicating copy to clipboard operation
stomp-rs copied to clipboard

A STOMP client in Rust. Compatible with RabbitMQ, ActiveMQ.

Results 17 stomp-rs issues
Sort by recently updated
recently updated
newest added

Thank you for great effort in the library ,could you update the examples with tested examples?

Hi, stomp = "0.11.0" no longer compiles in 1.62 or greater due to mio, could you update to version 0.12 along with documentation?

Updated the Cargo.toml and crate headers for rust 1.62, can this be pushed to crates as stomp 0.12.0

Problem with example ``` pdobryakov@pdobryakov:~/rust/t1$ cat ./src/main.rs extern crate stomp; use stomp::frame::Frame; use stomp::subscription::AckOrNack::Ack; fn main() { let destination = "/topic/messages"; let mut message_count: u64 = 0; let mut session...

In my app I connect to a queue with 5 threads with [Heartbeat enabled on the connection](https://github.com/genkgo/gworkerd/blob/master/src/consumer.rs#L41) and [`prefetch_count` enabled on the subscription](https://github.com/genkgo/gworkerd/blob/master/src/consumer.rs#L98) which is equal to 1. All works...

Currently running 0.3.x, which generates warnings when building. It will cease to work with rustc 1.3.

This trait is defined for `String`, `&str` and `&[u8]`. It feels like there should be a way to write an elegant generic impl to cover a variety of classes using...

help wanted
refactor

This was done to minimize refactoring required to release `v0.10.0`, which included auto-reconnect, reduced memory allocation and became usable from `rustc`'s stable channel. However, the resulting code is a bit...