-
Notifications
You must be signed in to change notification settings - Fork 175
Added the field localCorrelationData to MqttPublish for better flow-handling in reactive-APIs #546
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
base: master
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -77,6 +77,12 @@ public interface Mqtt3Publish extends Mqtt3Message { | |
*/ | ||
boolean isRetain(); | ||
|
||
/** | ||
* @return the optional local correlation data of this Publish message. This data is never propagated and kept | ||
* locally for correlation. | ||
*/ | ||
Object localCorrelationData(); | ||
|
||
|
||
/** | ||
* Acknowledges this Publish message. | ||
* | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -109,6 +109,12 @@ public interface Mqtt5Publish extends Mqtt5Message { | |
*/ | ||
@NotNull Mqtt5UserProperties getUserProperties(); | ||
|
||
/** | ||
* @return the optional local correlation data of this Publish message. This data is never propagated and kept | ||
* locally for correlation. | ||
*/ | ||
Object getLocalCorrelationData(); | ||
|
||
|
||
/** | ||
* Acknowledges this Publish message. | ||
* | ||
|
Uh oh!
There was an error while loading. Please reload this page.