Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GetGloballyQueuedWorkItems()

static IEnumerable< object > System.Threading.ThreadPool.GetGloballyQueuedWorkItems ( )
inlinestaticpackage

Definition at line 634 of file ThreadPool.cs.

635 {
637 {
638 foreach (IThreadPoolWorkItem item in s_workQueue.timeSensitiveWorkQueue)
639 {
640 yield return item;
641 }
642 }
643 foreach (object workItem in s_workQueue.workItems)
644 {
645 yield return workItem;
646 }
647 }
static bool SupportsTimeSensitiveWorkItems
Definition ThreadPool.cs:30
static readonly ThreadPoolWorkQueue s_workQueue
Definition ThreadPool.cs:16

References System.item, System.Threading.ThreadPool.s_workQueue, and System.Threading.ThreadPool.SupportsTimeSensitiveWorkItems.

Referenced by System.Threading.ThreadPool.GetGloballyQueuedWorkItemsForDebugger().