No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- using System;
- using System.Collections.Generic;
- using System.Threading.Tasks;
-
- namespace MQTTnet.Server
- {
- public interface IMqttServer : IApplicationMessageReceiver, IApplicationMessagePublisher
- {
- event EventHandler<MqttClientConnectedEventArgs> ClientConnected;
- event EventHandler<MqttClientDisconnectedEventArgs> ClientDisconnected;
- event EventHandler<MqttServerStartedEventArgs> Started;
-
- Task<IList<ConnectedMqttClient>> GetConnectedClientsAsync();
-
- Task StartAsync(IMqttServerOptions options);
- Task StopAsync();
- }
- }
|