I'm using the MQTTnet client in a console app. In my use case it seems like I do not need asynchrouns execution and I'd like to ease design by using synchronous execution. However in case I'd have to switch to an asynchrous design I'd like to prevent from having to change the mqtt client package.
As far as I know the MqttClient
has asynchronous versions of methods for connecting, publishing, disconnecting, etc. only. Are there synchronous versions of client methods as well? In case there are just asynchronous versions of the methods: Can I wrap the asynchronous methods somehow to make them synchronous?