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

WaitForComplete() public method

Wait for all tasks to complete in this group.
public WaitForComplete ( ) : void
return void
        public void WaitForComplete()
        {
            while (!NoTasks)
            {
                _completeEvent.WaitOne();
                _completeEvent.Reset();
            }
        }
    }