No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

IMqttServerAdapter.cs 305 B

1234567891011121314
  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. }