Felix Böhm

Results 20 comments of Felix Böhm

You probably know this, but the `Topic.matches` method can [match wildcards](https://sbtinstruments.github.io/aiomqtt/subscribing-to-a-topic.html#filtering-messages) as well, e.g. `Topic.matches("foo/+/bar/#")`. I'm happy to discuss possible improvements to the interface. What matters most to me that...

Interesting, this seems similar to how [fastapi-mqtt](https://github.com/sabuhish/fastapi-mqtt) is designed, and in general many web frameworks. Some thoughts on this: - This design pulls subscribing, receiving, and publishing messages out of...

Hi there, let's try to get to the bottom of this together 🙂 paho-mqtt is unfortunately a bit light on documentation. As far as I know, `clean_session` is a valid...

This is an interesting discussion 👍 I believe that this issue was solved by #216, which made the client context manager reusable (but not reentrant). The [chapter on reconnection](https://sbtinstruments.github.io/aiomqtt/reconnection.html) in...

Hey there, I'm guessing that we can close this as there has been no more discussion. If there's anything left unclear, please reopen!

This is a very interesting discussion 👍 In 2.0.0 we removed `filtered_messages()`, `unfiltered_messages()`, and `messages()` in favor of a single client-wide queue. Incidentally, this means that we now set paho's...

If you notice that this issue is not solved after all, please reopen!

Given that this issue was addressed with a pull request and we now touch on these points in the documentation, I hope that I can close this. If there's anything...

Hey there, I'm guessing that we can close this as there has been no more discussion. If there's anything left unclear, please reopen!

In 2.0.0 we removed `filtered_messages()`, `unfiltered_messages()`, and their successor `messages()` in favor of a single client-wide queue that's accessible via the `client.messages` generator. `client.messages` has the simpler type `AsyncGenerator[aiomqtt.Message, None]`....