C# Class Deeply.CompositeTask

Composite task class definition.
Inheritance: TaskBase
Show file Open project: jsnape/deeply

Protected Methods

Method Description
CompositeTask ( IEnumerable tasks ) : System

Initializes a new instance of the CompositeTask class.

CompositeTask ( string name, IEnumerable tasks ) : System

Initializes a new instance of the CompositeTask class.

VerifyInternalAsync ( ITaskContext context ) : System.Threading.Tasks.Task

Implementation function for the verification.

Method Details

CompositeTask() protected method

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

CompositeTask() protected method

Initializes a new instance of the CompositeTask class.
protected CompositeTask ( string name, IEnumerable tasks ) : System
name string Task name.
tasks IEnumerable A sequence of tasks.
return System

VerifyInternalAsync() protected method

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