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.
 
 
 
 

15 satır
305 B

  1. using System;
  2. using System.Threading.Tasks;
  3. using MQTTnet.Core.Server;
  4. namespace MQTTnet.Core.Adapter
  5. {
  6. public interface IMqttServerAdapter
  7. {
  8. event Action<IMqttCommunicationAdapter> ClientAccepted;
  9. Task StartAsync(MqttServerOptions options);
  10. Task StopAsync();
  11. }
  12. }