2 writes to schedulerQueue
System.Workflow.Runtime (2)
System\Activities\Statements\InteropExecutor.cs (2)
927
this.
schedulerQueue
= (Queue<SchedulableItem>)owner.RootActivity.GetValue(Scheduler.SchedulerQueueProperty);
930
this.
schedulerQueue
= new Queue<SchedulableItem>();
5 references to schedulerQueue
System.Workflow.Runtime (5)
System\Activities\Statements\InteropExecutor.cs (5)
928
if (this.
schedulerQueue
== null)
931
owner.RootActivity.SetValue(Scheduler.SchedulerQueueProperty, this.
schedulerQueue
);
944
Queue<SchedulableItem> queue = isInAtomicTransaction ? this.atomicActivityQueue : this.
schedulerQueue
;
968
this.
schedulerQueue
.Count > 0)
970
item =
schedulerQueue
.Dequeue();