Interface CellSink
- All Known Subinterfaces:
BloomFilterWriter,HFile.Writer
- All Known Implementing Classes:
AbstractMultiFileWriter,CompoundBloomFilterWriter,CustomTieringMultiFileWriter,DateTieredMultiFileWriter,HFileWriterImpl,StoreFileWriter,StripeMultiFileWriter,StripeMultiFileWriter.BoundaryMultiWriter,StripeMultiFileWriter.SizeMultiWriter
A sink of cells that allows appending cells to the Writers that implement it.
HFile.Writer, StoreFileWriter,
AbstractMultiFileWriter, BloomFilterWriter are some implementors of this.-
Method Summary
Modifier and TypeMethodDescriptionvoidappend(ExtendedCell cell) Append the given celldefault voidappendAll(List<ExtendedCell> cellList) Append the given (possibly partial) list of cells of a row
-
Method Details
-
append
Append the given cell- Parameters:
cell- the cell to be added- Throws:
IOException
-
appendAll
Append the given (possibly partial) list of cells of a row- Parameters:
cellList- the cell list to be added- Throws:
IOException
-