Lucene.Net.Analysis.BaseTokenStreamTestCase.AnalysisThread.AnalysisThread C# (CSharp) Method

AnalysisThread() private method

LUCENENET specific Added to remove a call to the then-static BaseTokenStreamTestCase methods
private AnalysisThread ( long seed, Analyzer a, int iterations, int maxWordLength, bool useCharFilter, bool simple, bool offsetsAreCorrect, RandomIndexWriter iw, BaseTokenStreamTestCase outerInstance ) : System.Linq
seed long
a Analyzer
iterations int
maxWordLength int
useCharFilter bool
simple bool
offsetsAreCorrect bool
iw RandomIndexWriter
outerInstance BaseTokenStreamTestCase
return System.Linq
            internal AnalysisThread(long seed, /*CountdownEvent latch,*/ Analyzer a, int iterations, int maxWordLength, 
                bool useCharFilter, bool simple, bool offsetsAreCorrect, RandomIndexWriter iw, BaseTokenStreamTestCase outerInstance)
            {
                this.Seed = seed;
                this.a = a;
                this.Iterations = iterations;
                this.MaxWordLength = maxWordLength;
                this.UseCharFilter = useCharFilter;
                this.Simple = simple;
                this.OffsetsAreCorrect = offsetsAreCorrect;
                this.Iw = iw;
                this._latch = null;
                this.OuterInstance = outerInstance;
            }
BaseTokenStreamTestCase.AnalysisThread