Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

18 lignes
576 B

  1. using System;
  2. using System.Collections.Generic;
  3. using MQTTnet.Core.Adapter;
  4. namespace MQTTnet.Core.Server
  5. {
  6. public interface IMqttServer
  7. {
  8. event EventHandler<MqttApplicationMessageReceivedEventArgs> ApplicationMessageReceived;
  9. event EventHandler<MqttClientConnectedEventArgs> ClientConnected;
  10. IList<ConnectedMqttClient> GetConnectedClients();
  11. void InjectClient(string identifier, IMqttCommunicationAdapter adapter);
  12. void Publish(MqttApplicationMessage applicationMessage);
  13. void Start();
  14. void Stop();
  15. }
  16. }