C# Class Deeply.ParallelTask

ParallelTask class definition.
Inheritance: CompositeTask
Show file Open project: jsnape/deeply

Public Methods

Method 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.

Protected Methods

Method Description
ExecuteInternalAsync ( ITaskContext context ) : System.Threading.Tasks.Task

Implementation function for the execution.

Method Details

ExecuteInternalAsync() protected method

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

ParallelTask() public method

Initializes a new instance of the ParallelTask class.
public ParallelTask ( ) : System
return System

ParallelTask() public method

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

ParallelTask() public method

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

ParallelTask() public method

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.
return System