2 writes to executor
System.Workflow.Runtime (2)
TimerEventSubscriptionCollection.cs (2)
31this.executor = executor; 49set { executor = value; }
7 references to executor
System.Workflow.Runtime (7)
TimerEventSubscriptionCollection.cs (7)
48get { return executor; } 84ITimerService timerService = this.executor.GetService(typeof(ITimerService)) as ITimerService; 85if (e.NewFirstElement != null && executor != null) 88timerService.ScheduleTimer(executor.ProcessTimersCallback, e.NewFirstElement.WorkflowInstanceId, e.NewFirstElement.ExpiresAt, e.NewFirstElement.SubscriptionId); 103WorkflowSchedulerService schedulerService = this.executor.GetService(typeof(WorkflowSchedulerService)) as WorkflowSchedulerService; 117WorkflowSchedulerService schedulerService = this.executor.GetService(typeof(WorkflowSchedulerService)) as WorkflowSchedulerService; 121schedulerService.Schedule(executor.ProcessTimersCallback, sub.WorkflowInstanceId, sub.ExpiresAt, sub.SubscriptionId);