Class CellIndexWriter
- java.lang.Object
-
- org.apache.druid.segment.serde.cell.CellIndexWriter
-
- All Implemented Interfaces:
Closeable,AutoCloseable,Serializer
public class CellIndexWriter extends Object implements Serializer, Closeable
-
-
Constructor Summary
Constructors Constructor Description CellIndexWriter(BlockCompressedPayloadWriter payloadWriter)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()longgetSerializedSize()Returns the number of bytes, that this Serializer will write to the output _channel_ (not smoosher) on aSerializer.writeTo(java.nio.channels.WritableByteChannel, org.apache.druid.java.util.common.io.smoosh.FileSmoosher)call.voidpersistAndIncrement(int increment)voidwriteTo(WritableByteChannel channel, FileSmoosher smoosher)Writes serialized form of this object to the given channel.
-
-
-
Constructor Detail
-
CellIndexWriter
public CellIndexWriter(BlockCompressedPayloadWriter payloadWriter)
-
-
Method Detail
-
persistAndIncrement
public void persistAndIncrement(int increment) throws IOException- Throws:
IOException
-
close
public void close() throws IOException- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Throws:
IOException
-
writeTo
public void writeTo(WritableByteChannel channel, @Nullable FileSmoosher smoosher) throws IOException
Description copied from interface:SerializerWrites serialized form of this object to the given channel. If parallel data streams are needed, they could be created with the provided smoosher.- Specified by:
writeToin interfaceSerializer- Throws:
IOException
-
getSerializedSize
public long getSerializedSize()
Description copied from interface:SerializerReturns the number of bytes, that this Serializer will write to the output _channel_ (not smoosher) on aSerializer.writeTo(java.nio.channels.WritableByteChannel, org.apache.druid.java.util.common.io.smoosh.FileSmoosher)call.- Specified by:
getSerializedSizein interfaceSerializer
-
-