Lucene.Net.Search.FieldComparator.StringOrdValComparator.SetNextReader C# (CSharp) Method

SetNextReader() public method

public SetNextReader ( Lucene.Net.Index.IndexReader reader, int docBase ) : void
reader Lucene.Net.Index.IndexReader
docBase int
return void
			public override void  SetNextReader(IndexReader reader, int docBase)
			{
				StringIndex currentReaderValues = Lucene.Net.Search.FieldCache_Fields.DEFAULT.GetStringIndex(reader, field);
				currentReaderGen++;
				order = currentReaderValues.order;
				lookup = currentReaderValues.lookup;
				System.Diagnostics.Debug.Assert(lookup.Length > 0);
				if (bottomSlot != - 1)
				{
					Convert(bottomSlot);
					bottomOrd = ords[bottomSlot];
				}
			}