1 instantiation of CallbackInfo
System.Workflow.Runtime (1)
Hosting\ManualWorkflowSchedulerService.cs (1)
137pendingScheduleRequests.Enqueue(timerId, new CallbackInfo(callback, workflowInstanceId, timerId, whenUtc), whenUtc);
9 references to CallbackInfo
System.Workflow.Runtime (9)
Hosting\ManualWorkflowSchedulerService.cs (9)
50private KeyedPriorityQueue<Guid, CallbackInfo, DateTime> pendingScheduleRequests = new KeyedPriorityQueue<Guid, CallbackInfo, DateTime>(); 192CallbackInfo ci = pendingScheduleRequests.FindByPriority(DateTime.UtcNow, 193delegate(CallbackInfo c) { return c.InstanceId == workflowInstanceId; }); 206CallbackInfo cs = null; 261private Timer CreateTimerCallback(CallbackInfo info) 279CallbackInfo ci = pendingScheduleRequests.Peek(); 309CallbackInfo ci = null; 363private void OnFirstElementChanged(object source, KeyedPriorityQueueHeadChangedEventArgs<CallbackInfo> e)