-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -387,7 +387,7 @@ private Task<bool> ReceivedPacketsHandlerAsync(CancellationToken cancellationTok | |
internal void HandleIncomingPublishPacket(PublishPacket publishPacket) | ||
{ | ||
Logger.Trace($"{this.Options.ClientId}-(RPH)- <-- Received Publish id={publishPacket.PacketIdentifier}"); | ||
this.OnMessageReceivedEventLauncher(publishPacket); | ||
this.OnPublishReceivedEventLauncher(publishPacket); | ||
|
||
if (publishPacket.Message.QoS is MQTT5.Types.QualityOfService.AtLeastOnceDelivery) | ||
{ | ||
|
@@ -409,6 +409,8 @@ internal void HandleIncomingPublishPacket(PublishPacket publishPacket) | |
|
||
this.SendQueue.Add(pubRecResponse); | ||
} | ||
Check warning on line 411 in Source/HiveMQtt/Client/HiveMQClientTrafficProcessor.cs GitHub Actions / pipeline-ubuntu-latest-dotnet-6.0.x
Check warning on line 411 in Source/HiveMQtt/Client/HiveMQClientTrafficProcessor.cs GitHub Actions / pipeline-ubuntu-latest-dotnet-7.0.x
Check warning on line 411 in Source/HiveMQtt/Client/HiveMQClientTrafficProcessor.cs GitHub Actions / pipeline-ubuntu-latest-dotnet-8.0.x
|
||
this.OnMessageReceivedEventLauncher(publishPacket); | ||
|
||
} | ||
Check warning on line 414 in Source/HiveMQtt/Client/HiveMQClientTrafficProcessor.cs GitHub Actions / pipeline-ubuntu-latest-dotnet-6.0.x
Check warning on line 414 in Source/HiveMQtt/Client/HiveMQClientTrafficProcessor.cs GitHub Actions / pipeline-ubuntu-latest-dotnet-7.0.x
Check warning on line 414 in Source/HiveMQtt/Client/HiveMQClientTrafficProcessor.cs GitHub Actions / pipeline-ubuntu-latest-dotnet-8.0.x
|
||
|
||
/// <summary> | ||
|