Add Inbound Channel Adapter for MQTT based on hivemq - #10989
Open
mjd507 wants to merge 3 commits into
Open
Conversation
mjd507
commented
May 6, 2026
mjd507
force-pushed
the
hivemq-mqtt
branch
2 times, most recently
from
May 8, 2026 01:09
8ed760f to
6d981ef
Compare
Contributor
Author
|
here is the PR in my own repo for outbound v3/v5 adapters (mjd507#1). |
artembilan
requested changes
May 19, 2026
mjd507
marked this pull request as draft
August 7, 2026 01:13
Member
|
@cppwfs , this is no rush: for the next milestone or so. Thanks |
mjd507
marked this pull request as ready for review
August 15, 2026 22:39
Related to: spring-projects#3102 To avoid constructor explosion, only `MqttClientBuilder` or `MqttClientManager` are designed as input params for building the adapters. The `MqttClientManager` requires a `MqttClientBuilder` as well. When build the underlying `MqttClient`, the config from the input `MqttClientBuilder` will be cloned to avoid global side effect. Signed-off-by: Jiandong Ma <jiandong.ma.cn@gmail.com>
Signed-off-by: Jiandong Ma <jiandong.ma.cn@gmail.com>
Signed-off-by: Jiandong Ma <jiandong.ma.cn@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Related to: #3102
To avoid constructor explosion, only
MqttClientBuilderorMqttClientManagerare designed as input params for building the adapters.The
MqttClientManagerrequires aMqttClientBuilderas well.When build the underlying
MqttClient, the config from the inputMqttClientBuilderwill be cloned to avoid global side effect.