Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

38 rader
1.1 KiB

  1. using System;
  2. using MQTTnet.Core.Adapter;
  3. using MQTTnet.Core.Client;
  4. using MQTTnet.Core.Serializer;
  5. using MQTTnet.Implementations;
  6. using MQTTnet.Core.Channel;
  7. namespace MQTTnet
  8. {
  9. public class MqttClientFactory
  10. {
  11. public IMqttClient CreateMqttClient(MqttClientOptions options)
  12. {
  13. if (options == null) {
  14. throw new ArgumentNullException(nameof(options));
  15. }
  16. return new MqttClient(options, new MqttChannelCommunicationAdapter(GetMqttCommunicationChannel(options), new MqttPacketSerializer()));
  17. }
  18. private static IMqttCommunicationChannel GetMqttCommunicationChannel(MqttClientOptions options)
  19. {
  20. switch (options.ConnectionType)
  21. {
  22. case MqttConnectionType.Tcp:
  23. case MqttConnectionType.Tls:
  24. return new MqttTcpChannel();
  25. case MqttConnectionType.Ws:
  26. case MqttConnectionType.Wss:
  27. return new MqttWebSocketChannel();
  28. default:
  29. throw new NotSupportedException();
  30. }
  31. }
  32. }
  33. }