using System; using MQTTnet.Core.Server; namespace MQTTnet.Core.Adapter { public interface IMqttServerAdapter { event EventHandler ClientConnected; void Start(MqttServerOptions options); void Stop(); } }