Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- using System;
- using System.Collections.Generic;
- using MQTTnet.Core.Adapter;
-
- namespace MQTTnet.Core.Server
- {
- public interface IMqttServer
- {
- event EventHandler<MqttApplicationMessageReceivedEventArgs> ApplicationMessageReceived;
- event EventHandler<MqttClientConnectedEventArgs> ClientConnected;
-
- IList<ConnectedMqttClient> GetConnectedClients();
- void InjectClient(string identifier, IMqttCommunicationAdapter adapter);
- void Publish(MqttApplicationMessage applicationMessage);
- void Start();
- void Stop();
- }
- }
|