public interface BlockCompressor
| Modifier and Type | Method and Description |
|---|---|
int |
compress(byte[] src,
int srcOff,
int srcLen,
byte[] dst,
int dstOff)
Compress data read from src, and write the compressed data to dst.
|
int |
compress(ByteBuffer src,
int srcOff,
int srcLen,
ByteBuffer dst,
int dstOff)
Compress source data read from (
Buffer.position() + srcOff), and write
the compressed data to dst. |
int |
getMaxCompressedSize(int srcSize)
Get the max compressed size for a given original size.
|
int getMaxCompressedSize(int srcSize)
int compress(ByteBuffer src, int srcOff, int srcLen, ByteBuffer dst, int dstOff) throws BufferCompressionException
Buffer.position() + srcOff), and write
the compressed data to dst.src - Uncompressed data to read fromsrcOff - The start offset of uncompressed datasrcLen - The length of data which want to be compresseddst - The target to write compressed datadstOff - The start offset to write the compressed dataBufferCompressionException - if exception thrown when compressingint compress(byte[] src,
int srcOff,
int srcLen,
byte[] dst,
int dstOff)
throws BufferCompressionException
src - Uncompressed data to read fromsrcOff - The start offset of uncompressed datasrcLen - The length of data which want to be compresseddst - The target to write compressed datadstOff - The start offset to write the compressed dataBufferCompressionException - if exception thrown when compressingCopyright © 2014–2025 The Apache Software Foundation. All rights reserved.