Lucene.Net.Index.AtomicReader.CheckIntegrity C# (CSharp) Method

CheckIntegrity() public abstract method

Checks consistency of this reader.

Note that this may be costly in terms of I/O, e.g. may involve computing a checksum value against large data files. @lucene.internal

public abstract CheckIntegrity ( ) : void
return void
        public abstract void CheckIntegrity();
    }

Usage Example

示例#1
0
 public override void CheckIntegrity()
 {
     EnsureOpen();
     m_input.CheckIntegrity();
 }
All Usage Examples Of Lucene.Net.Index.AtomicReader::CheckIntegrity