SqlWorkflowPersistenceService.IPendingWork.Complete 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
작업 일괄 처리를 완료하고 모든 리소스를 해제합니다.
virtual void System.Workflow.Runtime.IPendingWork.Complete(bool succeeded, System::Collections::ICollection ^ items) = System::Workflow::Runtime::IPendingWork::Complete;
void IPendingWork.Complete (bool succeeded, System.Collections.ICollection items);
abstract member System.Workflow.Runtime.IPendingWork.Complete : bool * System.Collections.ICollection -> unit
override this.System.Workflow.Runtime.IPendingWork.Complete : bool * System.Collections.ICollection -> unit
Sub Complete (succeeded As Boolean, items As ICollection) Implements IPendingWork.Complete
매개 변수
- succeeded
- Boolean
커밋이 성공했으면 true
이고, 그렇지 않으면 false
입니다.
- items
- ICollection
serialize된 상태 개체의 ICollection입니다.
구현
설명
SqlWorkflowPersistenceService의 기본 구현
IPendingWork.Complete는 작동하지 않습니다. SqlWorkflowPersistenceService 클래스에서 상속하여 확장하면 IPendingWork.Complete를 사용하여 구현에 표시된 items
에서 필요한 작업을 수행할 수 있습니다.