C# Class Encog.Util.Concurrency.TaskGroup

Mostrar archivo Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
TaskGroup ( int id ) : System.Threading

Create a task group with the specified id.

TaskStarting ( ) : void

Notify that a task is starting.

TaskStopping ( ) : void

Notify that a task is stopping.

WaitForComplete ( ) : void

Wait for all tasks to complete in this group.

Method Details

TaskGroup() public method

Create a task group with the specified id.
public TaskGroup ( int id ) : System.Threading
id int The ID of the task group.
return System.Threading

TaskStarting() public method

Notify that a task is starting.
public TaskStarting ( ) : void
return void

TaskStopping() public method

Notify that a task is stopping.
public TaskStopping ( ) : void
return void

WaitForComplete() public method

Wait for all tasks to complete in this group.
public WaitForComplete ( ) : void
return void