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.
 
 
 
 

19 righe
630 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Threading.Tasks;
  4. namespace MQTTnet.Core.Server
  5. {
  6. public interface IMqttServer : IApplicationMessageReceiver, IApplicationMessagePublisher
  7. {
  8. event EventHandler<MqttClientConnectedEventArgs> ClientConnected;
  9. event EventHandler<MqttClientDisconnectedEventArgs> ClientDisconnected;
  10. event EventHandler<MqttServerStartedEventArgs> Started;
  11. IList<ConnectedMqttClient> GetConnectedClients();
  12. void Publish(IEnumerable<MqttApplicationMessage> applicationMessages);
  13. Task StartAsync();
  14. Task StopAsync();
  15. }
  16. }