You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TestMqttCommunicationAdapterFactory.cs 570 B

123456789101112131415161718192021
  1. using MQTTnet.Adapter;
  2. using MQTTnet.Client.Options;
  3. using MQTTnet.Diagnostics;
  4. namespace MQTTnet.Tests.Mockups
  5. {
  6. public class TestMqttCommunicationAdapterFactory : IMqttClientAdapterFactory
  7. {
  8. private readonly IMqttChannelAdapter _adapter;
  9. public TestMqttCommunicationAdapterFactory(IMqttChannelAdapter adapter)
  10. {
  11. _adapter = adapter;
  12. }
  13. public IMqttChannelAdapter CreateClientAdapter(IMqttClientOptions options, IMqttNetChildLogger logger)
  14. {
  15. return _adapter;
  16. }
  17. }
  18. }