We have a large fat client application and we want to build up the notification for several use cases with mqtt.
It is recommended to make several connections from one application to the broker.
Every use case must subscribe several distinct topics.
The advantage of this solution would be an easier management of the topics. If a special GUI form is opened by the user, than the mqtt connection is built up with the subscription. Wildcard subscriptions are needed.
If the GUI form is closed, the connection will be also closed. Other GUI forms with subscriptions are not affected because they have their own connection.
If I work with only one connection from the whole application than the maintenance of the topic sub- and unsubscription will be more difficult.
Thanks for any feedback.