Switch to NetMQ for inter-process debugging

This commit is contained in:
Yoshi Askharoun
2023-05-22 21:44:05 -05:00
parent 1d36315297
commit 49d8ae6323
12 changed files with 167 additions and 101 deletions
+1 -1
View File
@@ -73,7 +73,7 @@ namespace Microsoft.Iris.Queues
QueueItem nextItem = queue.GetNextItem();
if (nextItem != null)
{
BridgeServer.Current.LogDispatcher(nextItem.ToDebugPacketString());
Application.Debugger.LogDispatcher(nextItem.ToDebugPacketString());
nextItem.Dispatch();
}
else