C# 클래스 Adf.Core.Tasks.TaskManager

Represent the methods and properties to provide information about the processes or tasks running on, as well as the general status of the task. Also provide functionality to start, end or manage any process or task.
파일 보기 프로젝트 열기: NLADP/ADF

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
FindTaskById ( System.Guid id ) : ITask

Find a task by a specified identifier from the System.Collections.Hashtable of tasks.

Home ( ) : void

Run or execute an array of tasks.

Return ( ITask finishedtask, TaskResult returns ) : void

Provides a method to finish one or more task, after completion of supplied finshed task.

Run ( Adf.Core.Tasks.ApplicationTask name ) : void

Run or execute an array of tasks by the specified ApplicationTask name.

Run ( ITask origin, Adf.Core.Tasks.ApplicationTask name ) : void

Provides a method to run or execute one or more tasks.

메소드 상세

FindTaskById() 공개 정적인 메소드

Find a task by a specified identifier from the System.Collections.Hashtable of tasks.
public static FindTaskById ( System.Guid id ) : ITask
id System.Guid The identifier of the task.
리턴 ITask

Home() 공개 정적인 메소드

Run or execute an array of tasks.
public static Home ( ) : void
리턴 void

Return() 공개 정적인 메소드

Provides a method to finish one or more task, after completion of supplied finshed task.
public static Return ( ITask finishedtask, TaskResult returns ) : void
finishedtask ITask The task which will check for cmpletion.
returns TaskResult The that defines the current status of a task.
리턴 void

Run() 공개 정적인 메소드

Run or execute an array of tasks by the specified ApplicationTask name.
public static Run ( Adf.Core.Tasks.ApplicationTask name ) : void
name Adf.Core.Tasks.ApplicationTask The that defines the start point of task.
리턴 void

Run() 공개 정적인 메소드

Provides a method to run or execute one or more tasks.
public static Run ( ITask origin, Adf.Core.Tasks.ApplicationTask name ) : void
origin ITask The that defines the start point of task.
name Adf.Core.Tasks.ApplicationTask The that defines the name of task.
리턴 void