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.
|
- using MQTTnet.Core.Client;
- using MQTTnet.Core.Channel;
-
- namespace MQTTnet.Core.Adapter
- {
- public interface IMqttCommunicationAdapterFactory
- {
- IMqttCommunicationAdapter CreateClientMqttCommunicationAdapter(IMqttClientOptions options);
-
- IMqttCommunicationAdapter CreateServerMqttCommunicationAdapter(IMqttCommunicationChannel channel);
- }
- }
|