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ů.
|
- using System;
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using MQTTnet.Core.Client;
-
- namespace MQTTnet.Core.Server
- {
- public interface IMqttServer : IApplicationMessageReceiver, IApplicationMessagePublisher
- {
- event EventHandler<MqttClientConnectedEventArgs> ClientConnected;
- event EventHandler<MqttClientDisconnectedEventArgs> ClientDisconnected;
-
- IList<ConnectedMqttClient> GetConnectedClients();
- void Publish(IEnumerable<MqttApplicationMessage> applicationMessages);
-
- Task StartAsync();
- Task StopAsync();
- }
- }
|