Lucene.Net.Index.AtomicReader.CheckIntegrity C# (CSharp) 메소드

CheckIntegrity() 공개 추상적인 메소드

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
리턴 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