2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2026-06-13 14:38:43 +00:00

Queue test

This commit is contained in:
2026-06-05 18:10:53 +03:00
parent 8723031e93
commit f1bbe8b6cd
4 changed files with 50 additions and 11 deletions
@@ -29,8 +29,10 @@ await wh.Open();
long memAfter = GC.GetTotalMemory(forceFullCollection: true);
double memMB = (memAfter - memBefore) / (1024.0 * 1024.0);
Console.WriteLine("Press ENTER to stop.");
Console.ReadLine();
Console.WriteLine("Ready. Press Ctrl+C to stop.");
var stop = new TaskCompletionSource();
Console.CancelKeyPress += (_, e) => { e.Cancel = true; stop.TrySetResult(); };
await stop.Task;
await wh.Close();