Package org.apache.lucene.util.bkd
Interface PointWriter
-
- All Superinterfaces:
AutoCloseable,Closeable
- All Known Implementing Classes:
HeapPointWriter,OfflinePointWriter
public interface PointWriter extends Closeable
Appends many points, and then at the end provides aPointReaderto iterate those points. This abstracts away whether we write to disk, or use simple arrays in heap.- NOTE: This API is for internal purposes only and might change in incompatible ways in the next release.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidappend(byte[] packedValue, long ord, int docID)Add a new pointvoiddestroy()Removes any temp files behind this writerPointReadergetReader(long startPoint, long length)Returns aPointReaderiterator to step through all previously added pointsPointReadergetSharedReader(long startPoint, long length, List<Closeable> toCloseHeroically)Returns the single shared reader, used at multiple times during the recursion, to read previously added points
-
-
-
Method Detail
-
append
void append(byte[] packedValue, long ord, int docID) throws IOExceptionAdd a new point- Throws:
IOException
-
getReader
PointReader getReader(long startPoint, long length) throws IOException
Returns aPointReaderiterator to step through all previously added points- Throws:
IOException
-
getSharedReader
PointReader getSharedReader(long startPoint, long length, List<Closeable> toCloseHeroically) throws IOException
Returns the single shared reader, used at multiple times during the recursion, to read previously added points- Throws:
IOException
-
destroy
void destroy() throws IOExceptionRemoves any temp files behind this writer- Throws:
IOException
-
-