Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

18 řádky
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. }