public interface BlockCompressor
| 限定符和类型 | 方法和说明 |
|---|---|
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 InsufficientBufferException
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 dataInsufficientBufferException - if the target does not have sufficient spaceint compress(byte[] src,
int srcOff,
int srcLen,
byte[] dst,
int dstOff)
throws InsufficientBufferException
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 dataInsufficientBufferException - if the target does not have sufficient spaceCopyright © 2014–2022 The Apache Software Foundation. All rights reserved.