Replace MQTT Forwarder with Subscribe Handler (mProxy) of MQTT Adapter #2221
arvindh123
started this conversation in
Ideas
Replies: 1 comment
-
It also makes sense to make the adapter configurable, so that we can make this "cross-protocol" communication optional; i.e. we have a flag so we decide whether to make a NATS subscription or not. We also need to be careful so that we do avoid duplicate messages (i.e. all MQTT messages will end in NATS, too, so if we have both MQTT and NATS subscriptions, we need to take only non-MQTT messages from NATS). |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Instead of using a separate MQTT Forwarder that subscribes to all topics from the
Message Bus / Broker
and forwards publishes to MQTT, we can utilize a subscribe handler that subscribes to specific topics on theMessage Bus / Broker
based on the interests of the MQTT client.Impacts that are not determinable as Pros or Cons by me:
Pros:
Beta Was this translation helpful? Give feedback.
All reactions