mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-16 13:15:03 +00:00
Merge pull request #900 from PepperDash/hotfix/queue-thread-name
Add name to `GenericQueue` Thread - Release Branch
This commit is contained in:
@@ -139,7 +139,8 @@ namespace PepperDash.Essentials.Core.Queues
|
|||||||
_queue = new CrestronQueue<IQueueMessage>(cap);
|
_queue = new CrestronQueue<IQueueMessage>(cap);
|
||||||
_worker = new Thread(ProcessQueue, null, Thread.eThreadStartOptions.Running)
|
_worker = new Thread(ProcessQueue, null, Thread.eThreadStartOptions.Running)
|
||||||
{
|
{
|
||||||
Priority = priority
|
Priority = priority,
|
||||||
|
Name = _key
|
||||||
};
|
};
|
||||||
|
|
||||||
SetDelayValues(pacing);
|
SetDelayValues(pacing);
|
||||||
|
|||||||
Reference in New Issue
Block a user