public abstract class PostingsReaderBase extends Object implements Closeable, Accountable
PostingsEnum
and
PostingsEnum
instances. It provides an
IndexInput (termsIn) where this class may read any
previously stored data that it had written in its
corresponding PostingsWriterBase
at indexing
time.NULL_ACCOUNTABLE
Modifier | Constructor and Description |
---|---|
protected |
PostingsReaderBase()
Sole constructor.
|
Modifier and Type | Method and Description |
---|---|
abstract void |
checkIntegrity()
Checks consistency of this reader.
|
abstract void |
close() |
abstract void |
decodeTerm(DataInput in,
FieldInfo fieldInfo,
BlockTermState state,
boolean absolute)
Actually decode metadata for next term
|
abstract ImpactsEnum |
impacts(FieldInfo fieldInfo,
BlockTermState state,
int flags)
Return a
ImpactsEnum that computes impacts with scorer . |
abstract void |
init(IndexInput termsIn,
SegmentReadState state)
Performs any initialization, such as reading and
verifying the header from the provided terms
dictionary
IndexInput . |
abstract BlockTermState |
newTermState()
Return a newly created empty TermState
|
abstract PostingsEnum |
postings(FieldInfo fieldInfo,
BlockTermState state,
PostingsEnum reuse,
int flags)
Must fully consume state, since after this call that
TermState may be reused.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getChildResources, ramBytesUsed
protected PostingsReaderBase()
public abstract void init(IndexInput termsIn, SegmentReadState state) throws IOException
IndexInput
.IOException
public abstract BlockTermState newTermState() throws IOException
IOException
public abstract void decodeTerm(DataInput in, FieldInfo fieldInfo, BlockTermState state, boolean absolute) throws IOException
public abstract PostingsEnum postings(FieldInfo fieldInfo, BlockTermState state, PostingsEnum reuse, int flags) throws IOException
IOException
public abstract ImpactsEnum impacts(FieldInfo fieldInfo, BlockTermState state, int flags) throws IOException
ImpactsEnum
that computes impacts with scorer
.IOException
postings(FieldInfo, BlockTermState, PostingsEnum, int)
public abstract void checkIntegrity() throws IOException
Note that this may be costly in terms of I/O, e.g. may involve computing a checksum value against large data files.
IOException
public abstract void close() throws IOException
close
in interface Closeable
close
in interface AutoCloseable
IOException
Copyright © 2000-2021 Apache Software Foundation. All Rights Reserved.