Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

20 righe
624 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Threading.Tasks;
  4. using MQTTnet.Core.Adapter;
  5. namespace MQTTnet.Core.Server
  6. {
  7. public interface IMqttServer
  8. {
  9. event EventHandler<MqttApplicationMessageReceivedEventArgs> ApplicationMessageReceived;
  10. event EventHandler<MqttClientConnectedEventArgs> ClientConnected;
  11. event EventHandler<MqttClientDisconnectedEventArgs> ClientDisconnected;
  12. IReadOnlyList<ConnectedMqttClient> GetConnectedClients();
  13. void Publish(MqttApplicationMessage applicationMessage);
  14. Task StartAsync();
  15. Task StopAsync();
  16. }
  17. }