20 references to WorkflowRuntime
System.Workflow.Runtime (20)
Tracking.cs (3)
114listenerBroker.ReplaceServices(exec.WorkflowRuntime.TrackingServiceReplacement); 253Initialize(skedExec.WorkflowRuntime); 268Initialize(skedExec.WorkflowRuntime);
WorkflowExecutor.cs (14)
658WorkflowRuntime.SchedulerService.Schedule(this.RunSome, this.InstanceId); 815WorkflowPersistenceService persistence = this.WorkflowRuntime.WorkflowPersistenceService; 1043WorkflowPersistenceService persistence = this.WorkflowRuntime.WorkflowPersistenceService; 1444if (this.WorkflowRuntime.WorkflowPersistenceService == null) 1564if (this.WorkflowRuntime.WorkflowPersistenceService == null) 1828WorkflowPersistenceService persistenceSvc = this.WorkflowRuntime.WorkflowPersistenceService; 2167this.WorkflowRuntime.TransactionService.CommitWorkBatch(DoResourceManagerCommit); 2195this.WorkflowRuntime.TransactionService.CommitWorkBatch(DoResourceManagerCommit); 2837WorkflowInstance instance = this.WorkflowRuntime.InternalCreateWorkflow(new CreationContext(workflowType, this, this.CurrentActivity.QualifiedName, namedArgumentValues), Guid.NewGuid()); 2976if (mustPersistState && this.WorkflowRuntime.WorkflowPersistenceService == null) 3027if (persistOnClose && this.WorkflowRuntime.GetService<WorkflowPersistenceService>() == null) 3052using (RuntimeEnvironment runtimeEnv = new RuntimeEnvironment(this.WorkflowRuntime)) 3054contextActivity = this.WorkflowRuntime.WorkflowPersistenceService.LoadCompletedContextActivity(contextInfo.ContextGuid, outerActivity); 3099return this.WorkflowRuntime.GetService(serviceType);
WorkflowStateRollbackService.cs (3)
85using (RuntimeEnvironment runtimeEnv = new RuntimeEnvironment(this.workflowExecutor.WorkflowRuntime)) 97newWorkflowExecutor.Initialize(clonedRootActivity, this.workflowExecutor.WorkflowRuntime, this.workflowExecutor); 132this.workflowExecutor.WorkflowRuntime.ReplaceWorkflowExecutor(this.workflowExecutor.InstanceId, this.workflowExecutor, newWorkflowExecutor);