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
Esempio n. 1
0
 public override void CheckIntegrity()
 {
     EnsureOpen();
     m_input.CheckIntegrity();
 }
Esempio n. 2
0
 public override void CheckIntegrity()
 {
     EnsureOpen();
     @in.CheckIntegrity();
 }