Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- 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();
- }
- }
|