Encog.Util.Concurrency.TaskGroup.TaskGroup C# (CSharp) Method

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
        public TaskGroup(int id)
        {
            _id = id;
            _totalTasks = 0;
        }