Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- using System;
- using System.Threading.Tasks;
- using MQTTnet.Server;
-
- namespace MQTTnet.Adapter
- {
- public interface IMqttServerAdapter
- {
- event EventHandler<MqttServerAdapterClientAcceptedEventArgs> ClientAccepted;
-
- Task StartAsync(IMqttServerOptions options);
- Task StopAsync();
- }
- }
|