dlips

Results 8 comments of dlips
trafficstars

Hi, I would also need this functionality. Is there any progress on this topic?

I have to send messages to a broker in a reliable way. To this end, I implemented a persistent message queue with rusqlite. Then I send the messages to a...

Hi, I am one of the possible users of this functionality from #349 :) Thanks for bringing this up again Could you elaborate on the usage pattern for the returned...

`joinset.join_next()` is exactly what I was looking for. Missed it when looking through the tokio docs. That would solve my problem. Thank you :)

> Maybe what we should do is setup a future that resolves on `EventLoop` receiving the associated puback(qos1) and pubcomp(qos2) when a publish is sent? can we define the usecase...

Hi, did you come to a conclusion if the future returned by `.poll()` is cancellation safe? I would use `poll()` with `tokio::select!` if it is. Reviewing the code, I think...

I looked into the source code, and the problem is that `Message::message_id()` from the `can_dbc` crate returns the message id as defined in the dbc file, without recognizing the meaning...

Damn, they changed it one day after I checked the crate to understand what's going on :) Ok, but with the change of the message id to an enum, there...