Explorar el Código

Make clients interfaces disposable.

release/3.x.x
Christian hace 6 años
padre
commit
c7c84ad39b
Se han modificado 4 ficheros con 4 adiciones y 4 borrados
  1. +1
    -1
      Frameworks/MQTTnet.NetStandard/Client/IMqttClient.cs
  2. +1
    -1
      Frameworks/MQTTnet.NetStandard/Client/MqttClient.cs
  3. +1
    -1
      Frameworks/MQTTnet.NetStandard/ManagedClient/IManagedMqttClient.cs
  4. +1
    -1
      Frameworks/MQTTnet.NetStandard/ManagedClient/ManagedMqttClient.cs

+ 1
- 1
Frameworks/MQTTnet.NetStandard/Client/IMqttClient.cs Ver fichero

@@ -4,7 +4,7 @@ using System.Threading.Tasks;

namespace MQTTnet.Client
{
public interface IMqttClient : IApplicationMessageReceiver, IApplicationMessagePublisher
public interface IMqttClient : IApplicationMessageReceiver, IApplicationMessagePublisher, IDisposable
{
bool IsConnected { get; }



+ 1
- 1
Frameworks/MQTTnet.NetStandard/Client/MqttClient.cs Ver fichero

@@ -12,7 +12,7 @@ using MQTTnet.Protocol;

namespace MQTTnet.Client
{
public class MqttClient : IMqttClient, IDisposable
public class MqttClient : IMqttClient
{
private readonly IMqttClientAdapterFactory _adapterFactory;
private readonly MqttPacketDispatcher _packetDispatcher;


+ 1
- 1
Frameworks/MQTTnet.NetStandard/ManagedClient/IManagedMqttClient.cs Ver fichero

@@ -5,7 +5,7 @@ using MQTTnet.Client;

namespace MQTTnet.ManagedClient
{
public interface IManagedMqttClient : IApplicationMessageReceiver, IApplicationMessagePublisher
public interface IManagedMqttClient : IApplicationMessageReceiver, IApplicationMessagePublisher, IDisposable
{
bool IsConnected { get; }



+ 1
- 1
Frameworks/MQTTnet.NetStandard/ManagedClient/ManagedMqttClient.cs Ver fichero

@@ -11,7 +11,7 @@ using MQTTnet.Protocol;

namespace MQTTnet.ManagedClient
{
public class ManagedMqttClient : IManagedMqttClient, IDisposable
public class ManagedMqttClient : IManagedMqttClient
{
private readonly BlockingCollection<MqttApplicationMessage> _messageQueue = new BlockingCollection<MqttApplicationMessage>();
private readonly Dictionary<string, MqttQualityOfServiceLevel> _subscriptions = new Dictionary<string, MqttQualityOfServiceLevel>();


Cargando…
Cancelar
Guardar