25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

12 satır
367 B

  1. using MQTTnet.Core.Client;
  2. using MQTTnet.Core.Channel;
  3. namespace MQTTnet.Core.Adapter
  4. {
  5. public interface IMqttCommunicationAdapterFactory
  6. {
  7. IMqttCommunicationAdapter CreateClientMqttCommunicationAdapter(IMqttClientOptions options);
  8. IMqttCommunicationAdapter CreateServerMqttCommunicationAdapter(IMqttCommunicationChannel channel);
  9. }
  10. }