mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 16:57:22 +01:00
change queue to concurrentqueue
This commit is contained in:
parent
23abae4c20
commit
c2576a4bb6
1 changed files with 2 additions and 1 deletions
|
|
@ -7,6 +7,7 @@ using MareSynchronos.Utils;
|
|||
using MareSynchronos.WebAPI;
|
||||
using Lumina.Excel.GeneratedSheets;
|
||||
using Action = System.Action;
|
||||
using System.Collections.Concurrent;
|
||||
|
||||
namespace MareSynchronos.Managers
|
||||
{
|
||||
|
|
@ -36,7 +37,7 @@ namespace MareSynchronos.Managers
|
|||
_penumbraSetTemporaryMod;
|
||||
private readonly ICallGateSubscriber<IntPtr, string, string, object?> _penumbraGameObjectResourcePathResolved;
|
||||
private readonly DalamudUtil _dalamudUtil;
|
||||
private readonly Queue<Action> actionQueue = new();
|
||||
private readonly ConcurrentQueue<Action> actionQueue = new();
|
||||
|
||||
public IpcManager(DalamudPluginInterface pi, DalamudUtil dalamudUtil)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue