瀏覽代碼

Merge pull request #476 from PaulFake/patch-1

Check for pending disconnect in ThrowIfNotConnected
release/3.x.x
Christian 6 年之前
committed by GitHub
父節點
當前提交
803dd6f64e
沒有發現已知的金鑰在資料庫的簽署中 GPG Key ID: 4AEE18F83AFDEB23
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. +3
    -3
      Source/MQTTnet/Client/MqttClient.cs

+ 3
- 3
Source/MQTTnet/Client/MqttClient.cs 查看文件

@@ -29,7 +29,7 @@ namespace MQTTnet.Client
internal Task _keepAliveMessageSenderTask;
private IMqttChannelAdapter _adapter;
private bool _cleanDisconnectInitiated;
private int _disconnectGate;
private long _disconnectGate;

public MqttClient(IMqttClientAdapterFactory channelFactory, IMqttNetLogger logger)
{
@@ -216,7 +216,7 @@ namespace MQTTnet.Client

private void ThrowIfNotConnected()
{
if (!IsConnected) throw new MqttCommunicationException("The client is not connected.");
if (!IsConnected || Interlocked.Read(ref _disconnectGate) == 1) throw new MqttCommunicationException("The client is not connected.");
}

private void ThrowIfConnected(string message)
@@ -551,4 +551,4 @@ namespace MQTTnet.Client
return Interlocked.CompareExchange(ref _disconnectGate, 1, 0) != 0;
}
}
}
}

Loading…
取消
儲存