1 instantiation of Scheduler
System.Workflow.Runtime (1)
System\Activities\Statements\InteropExecutor.cs (1)
455this.scheduler = new Scheduler(this);
7 references to Scheduler
System.Workflow.Runtime (7)
System\Activities\Statements\InteropExecutor.cs (7)
50Scheduler scheduler; 912internal static DependencyProperty SchedulerQueueProperty = DependencyProperty.RegisterAttached("SchedulerQueue", typeof(Queue<SchedulableItem>), typeof(Scheduler)); 913internal static DependencyProperty AtomicActivityQueueProperty = DependencyProperty.RegisterAttached("AtomicActivityQueue", typeof(Queue<SchedulableItem>), typeof(Scheduler)); 927this.schedulerQueue = (Queue<SchedulableItem>)owner.RootActivity.GetValue(Scheduler.SchedulerQueueProperty); 931owner.RootActivity.SetValue(Scheduler.SchedulerQueueProperty, this.schedulerQueue); 934this.atomicActivityQueue = (Queue<SchedulableItem>)owner.RootActivity.GetValue(Scheduler.AtomicActivityQueueProperty); 938owner.RootActivity.SetValue(Scheduler.AtomicActivityQueueProperty, this.atomicActivityQueue);