Class BlockCompressedPayloadWriter
- java.lang.Object
-
- org.apache.druid.segment.serde.cell.BlockCompressedPayloadWriter
-
- All Implemented Interfaces:
Closeable,AutoCloseable,Serializer
public class BlockCompressedPayloadWriter extends Object implements Serializer, Closeable
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classBlockCompressedPayloadWriter.Builder
-
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.voidwrite(byte[] payload)voidwrite(ByteBuffer payload)voidwriteTo(WritableByteChannel channel, FileSmoosher smoosher)Writes serialized form of this object to the given channel.
-
-
-
Method Detail
-
write
public void write(byte[] payload) throws IOException- Throws:
IOException
-
write
public void write(ByteBuffer payload) 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
-
-