public abstract class Compressor extends Object implements Closeable
| Modifier | Constructor and Description |
|---|---|
protected |
Compressor()
Sole constructor, typically called from sub-classes.
|
| Modifier and Type | Method and Description |
|---|---|
abstract void |
compress(byte[] bytes,
int off,
int len,
DataOutput out)
Compress bytes into
out. |
protected Compressor()
public abstract void compress(byte[] bytes,
int off,
int len,
DataOutput out)
throws IOException
out. It is the responsibility of the
compressor to add all necessary information so that a Decompressor
will know when to stop decompressing bytes from the stream.IOExceptionCopyright © 2000-2021 Apache Software Foundation. All Rights Reserved.