AdvancedMultithreadingLab.TestCollectionBase.ConsumerThread C# (CSharp) Method

ConsumerThread() private method

private ConsumerThread ( ) : void
return void
        private void ConsumerThread()
        {
            while ( true )
            {
                this.startBarrier.SignalAndWait();
                if ( this.disposed ) break;
                this.ConsumeItems( Iterations );
                this.completedBarrier.SignalAndWait();
            }
        }