C# Class Deeply.ParallelTask

ParallelTask class definition.
Inheritance: CompositeTask
Afficher le fichier Open project: jsnape/deeply

Méthodes publiques

Méthode Description
ParallelTask ( ) : System

Initializes a new instance of the ParallelTask class.

ParallelTask ( IEnumerable tasks ) : System

Initializes a new instance of the ParallelTask class.

ParallelTask ( string name ) : System

Initializes a new instance of the ParallelTask class.

ParallelTask ( string name, IEnumerable tasks ) : System

Initializes a new instance of the ParallelTask class.

Méthodes protégées

Méthode Description
ExecuteInternalAsync ( ITaskContext context ) : System.Threading.Tasks.Task

Implementation function for the execution.

Method Details

ExecuteInternalAsync() protected méthode

Implementation function for the execution.
protected ExecuteInternalAsync ( ITaskContext context ) : System.Threading.Tasks.Task
context ITaskContext Verification context.
Résultat System.Threading.Tasks.Task

ParallelTask() public méthode

Initializes a new instance of the ParallelTask class.
public ParallelTask ( ) : System
Résultat System

ParallelTask() public méthode

Initializes a new instance of the ParallelTask class.
public ParallelTask ( IEnumerable tasks ) : System
tasks IEnumerable A sequence of tasks.
Résultat System

ParallelTask() public méthode

Initializes a new instance of the ParallelTask class.
public ParallelTask ( string name ) : System
name string Task name.
Résultat System

ParallelTask() public méthode

Initializes a new instance of the ParallelTask class.
public ParallelTask ( string name, IEnumerable tasks ) : System
name string Task name.
tasks IEnumerable A sequence of tasks.
Résultat System