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