public class AircompressorCodec extends Object implements CompressionCodec
CompressionCodec.Modifier| Modifier and Type | Method and Description |
|---|---|
void |
close()
Closes the codec, releasing the resources.
|
boolean |
compress(ByteBuffer in,
ByteBuffer out,
ByteBuffer overflow)
Compress the in buffer to the out buffer.
|
void |
decompress(ByteBuffer in,
ByteBuffer out)
Decompress the in buffer to the out buffer.
|
protected static byte[] |
getBuffer(int size) |
CompressionCodec |
modify(EnumSet<CompressionCodec.Modifier> modifiers)
Produce a modified compression codec if the underlying algorithm allows
modification.
|
void |
reset()
Resets the codec, preparing it for reuse.
|
protected static byte[] getBuffer(int size)
public boolean compress(ByteBuffer in, ByteBuffer out, ByteBuffer overflow) throws IOException
CompressionCodeccompress in interface CompressionCodecin - the bytes to compressout - the uncompressed bytesoverflow - put any additional bytes hereIOExceptionpublic void decompress(ByteBuffer in, ByteBuffer out) throws IOException
CompressionCodecdecompress in interface CompressionCodecin - the bytes to decompressout - the decompressed bytesIOExceptionpublic CompressionCodec modify(EnumSet<CompressionCodec.Modifier> modifiers)
CompressionCodecmodify in interface CompressionCodecmodifiers - compression modifiers (nullable)public void reset()
CompressionCodecreset in interface CompressionCodecpublic void close()
CompressionCodecclose in interface CompressionCodecCopyright © 2013–2018 The Apache Software Foundation. All rights reserved.