다음을 통해 공유


WorkflowSchedulerService 생성자

정의

파생 클래스에서 구현되는 경우에는 WorkflowSchedulerService 클래스의 새 인스턴스를 초기화합니다.

protected:
 WorkflowSchedulerService();
protected WorkflowSchedulerService ();
Protected Sub New ()

예제

다음 예제에서는 SqlWorkflowPersistenceService에서 상속된 WorkflowPersistenceService 개체의 인스턴스를 만들어 런타임에 추가하는 방법을 보여 줍니다. 이 예제는 Program.cs 파일에 있는 Nested Exception Handlers SDK 샘플의 일부입니다. 자세한 내용은 Nested Exception Handlers 샘플합니다.

// A workflow is always run asychronously; the main thread waits on this event so the program
// doesn't exit before the workflow completes
workflowRuntime.AddService(new SqlWorkflowPersistenceService("Initial Catalog=SqlPersistenceService;Data Source=localhost;Integrated Security=SSPI;"));
' A workflow is always run asychronously the main thread waits on Me event so the program
' doesn't exit before the workflow completes
WorkflowRuntime.AddService(New SqlWorkflowPersistenceService("Initial Catalog=SqlPersistenceServiceData Source=localhostIntegrated Security=SSPI"))

적용 대상