C# 클래스 Deeply.SequentialTask

Sequential Task definition.
상속: CompositeTask
파일 보기 프로젝트 열기: jsnape/deeply 1 사용 예제들

공개 메소드들

메소드 설명
SequentialTask ( ) : System

Initializes a new instance of the SequentialTask class.

SequentialTask ( IEnumerable tasks ) : System

Initializes a new instance of the SequentialTask class.

SequentialTask ( string name ) : System

Initializes a new instance of the SequentialTask class.

SequentialTask ( string name, IEnumerable tasks ) : System

Initializes a new instance of the SequentialTask class.

보호된 메소드들

메소드 설명
ExecuteInternalAsync ( ITaskContext context ) : System.Threading.Tasks.Task

Implementation function for the execution.

메소드 상세

ExecuteInternalAsync() 보호된 메소드

Implementation function for the execution.
protected ExecuteInternalAsync ( ITaskContext context ) : System.Threading.Tasks.Task
context ITaskContext Verification context.
리턴 System.Threading.Tasks.Task

SequentialTask() 공개 메소드

Initializes a new instance of the SequentialTask class.
public SequentialTask ( ) : System
리턴 System

SequentialTask() 공개 메소드

Initializes a new instance of the SequentialTask class.
public SequentialTask ( IEnumerable tasks ) : System
tasks IEnumerable A sequence of tasks.
리턴 System

SequentialTask() 공개 메소드

Initializes a new instance of the SequentialTask class.
public SequentialTask ( string name ) : System
name string Task name.
리턴 System

SequentialTask() 공개 메소드

Initializes a new instance of the SequentialTask class.
public SequentialTask ( string name, IEnumerable tasks ) : System
name string Task name.
tasks IEnumerable A sequence of tasks.
리턴 System