From b7d719607169081b4762f23275e21037283e2ef3 Mon Sep 17 00:00:00 2001 From: Neil Dorin Date: Tue, 26 Jan 2021 12:32:04 -0700 Subject: [PATCH] Sets the queue size to 25 --- .../PepperDashEssentialsBase/Queues/GenericQueue.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/essentials-framework/Essentials Core/PepperDashEssentialsBase/Queues/GenericQueue.cs b/essentials-framework/Essentials Core/PepperDashEssentialsBase/Queues/GenericQueue.cs index 05757213..5ca8a793 100644 --- a/essentials-framework/Essentials Core/PepperDashEssentialsBase/Queues/GenericQueue.cs +++ b/essentials-framework/Essentials Core/PepperDashEssentialsBase/Queues/GenericQueue.cs @@ -40,7 +40,7 @@ namespace PepperDash_Essentials_Core.Queues public GenericQueue(string key, Thread.eThreadPriority priority) { _key = key; - _queue = new CrestronQueue(); + _queue = new CrestronQueue(25); _worker = new Thread(ProcessQueue, null, Thread.eThreadStartOptions.Running) { Priority = priority