mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-31 02:08:03 +01:00
Change to ConcurrentQueue.
This commit is contained in:
@@ -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 ();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user