-
Notifications
You must be signed in to change notification settings - Fork 65
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
Implement Request/Response
flow in MQTT
#4668
Implement Request/Response
flow in MQTT
#4668
Comments
In this feature, a There is also a concept of sending |
Image taken from https://www.emqx.com/en/blog/mqtt5-request-response |
In this, Publisher side Option - 1 Nats also have a similar structure like this. However the java api of nats (send) returns the response directly rather than to a callback. It doesn't have a concept of correlation id where it's user's responsibility to handle the appropriate response to specific publish. If we try to implement it similar to this, it will block users' operation flow. Option - 2 Subscriber side
Caller will automatically grab the response topic and publish to that topic. @shafreenAnfar WDYT? |
Description:
$subject
The text was updated successfully, but these errors were encountered: