public static WorkflowRuntime ColdStart(this WorkflowRuntime runtime)
 {
     if (!runtime.ValidateSettings())
     {
         throw new InvalidOperationException();
     }
     runtime.ColdStart();
     return(runtime);
 }