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.
Показать файл Открыть проект

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