-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If any possible to make umqtt to support Qos 2? #296
Comments
I am interested to know too |
Yes, implementing support for QOS 2 will increase the code size of the For QOS 1 the method has to listen for a For QOS 2 the client, after sending the The simplistic way to implement this would be to handle all this in a synchronous, blocking fashion, i.e. for publishing client -> server, in the method
And for receiving QOS 2 from server -> client, do something like this in the
The problem with this is:
The only way I see around these problems is handling reception of all packet types in |
@SpotlightKid Thank you so much!! |
@SpotlightKid Thank You ! that's pretty awesome |
Is this still relevant? Are there other MQTT implementations that people know of that support QoS 2 ? |
Look through the Doc and code, i found Qos=2 messages are not supported in umqtt module.It's good to keep the code size small,but this function will make this module more larger ? i am curious
The text was updated successfully, but these errors were encountered: