Change to ConcurrentQueue.

This commit is contained in:
BDisp
2024-11-04 18:36:16 +00:00
parent 808896d800
commit 782325f6b7

View File

@@ -1,5 +1,7 @@
#nullable enable
using System.Collections.Concurrent;
namespace Terminal.Gui;
/// <summary>
@@ -95,5 +97,5 @@ public class EscSeqRequests
}
/// <summary>Gets the <see cref="EscSeqReqStatus"/> list.</summary>
public Queue<EscSeqReqStatus> Statuses { get; } = new ();
public ConcurrentQueue<EscSeqReqStatus> Statuses { get; } = new ();
}