Ver código fonte

Increased PR quality

release/3.x.x
1iveowl 7 anos atrás
committed by GitHub
pai
commit
28d31d0cf5
1 arquivos alterados com 9 adições e 9 exclusões
  1. +9
    -9
      MQTTnet.Core/Adapter/MqttChannelCommunicationAdapter.cs

+ 9
- 9
MQTTnet.Core/Adapter/MqttChannelCommunicationAdapter.cs Ver arquivo

@@ -83,7 +83,7 @@ namespace MQTTnet.Core.Adapter
{
foreach (var packet in packets)
{
if (packet == null) continue;
if (packet == null) {continue};

MqttTrace.Information(nameof(MqttChannelCommunicationAdapter), $"TX >>> {packet} [Timeout={timeout}]");

@@ -93,7 +93,7 @@ namespace MQTTnet.Core.Adapter

if (timeout > TimeSpan.Zero)
{
_sendTask = _sendTask.ContinueWith(c => _channel.SendStream.FlushAsync(cancellationToken).TimeoutAfter(timeout), cancellationToken);// _channel.SendStream.FlushAsync(cancellationToken).TimeoutAfter(timeout);//.ConfigureAwait(false);
_sendTask = _sendTask.ContinueWith(c => _channel.SendStream.FlushAsync(cancellationToken).TimeoutAfter(timeout), cancellationToken).ConfigureAwait(false);
}
else
{
@@ -105,17 +105,17 @@ namespace MQTTnet.Core.Adapter
await _sendTask; // configure await false generates stackoverflow

}
catch (TaskCanceledException ex)
catch (TaskCanceledException)
{
throw ex;
throw;
}
catch (MqttCommunicationTimedOutException ex)
catch (MqttCommunicationTimedOutException)
{
throw ex;
throw;
}
catch (MqttCommunicationException ex)
catch (MqttCommunicationException)
{
throw ex;
throw;
}
catch (Exception exception)
{
@@ -190,4 +190,4 @@ namespace MQTTnet.Core.Adapter
return new ReceivedMqttPacket(header, new MemoryStream(body, 0, body.Length));
}
}
}
}

Carregando…
Cancelar
Salvar