Explorar el Código

Handle exceptions whicha re thrown while processing application messages.

release/3.x.x
Christian Kratky hace 7 años
padre
commit
e021d5a56b
Se han modificado 1 ficheros con 9 adiciones y 1 borrados
  1. +9
    -1
      MQTTnet.Core/Client/MqttClient.cs

+ 9
- 1
MQTTnet.Core/Client/MqttClient.cs Ver fichero

@@ -238,7 +238,15 @@ namespace MQTTnet.Core.Client
}

var applicationMessage = publishPacket.ToApplicationMessage();
ApplicationMessageReceived?.Invoke(this, new MqttApplicationMessageReceivedEventArgs(applicationMessage));

try
{
ApplicationMessageReceived?.Invoke(this, new MqttApplicationMessageReceivedEventArgs(applicationMessage));
}
catch (Exception exception)
{
MqttTrace.Error(nameof(MqttClient), exception, "Unhandled exception while handling application message.");
}
}

private Task ProcessReceivedPublishPacket(MqttPublishPacket publishPacket)


Cargando…
Cancelar
Guardar