QueueIteration() public method

public QueueIteration ( int iteration ) : void
iteration int
return void
        public bool TryEnqueueSingleIteration()
        {
            bool result = false;
            TestExecutorThread thread = TryDequeueFreeThread();

            if (thread != null)
            {
                thread.QueueIteration(_nextIterationId++);
                result = true;
            }

            return(result);
        }