Package org.apache.avro.file
Class ZstandardCodec
java.lang.Object
org.apache.avro.file.Codec
org.apache.avro.file.ZstandardCodec
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
static final boolean
-
Constructor Summary
ConstructorDescriptionZstandardCodec
(int compressionLevel, boolean useChecksum, boolean useBufferPool) Create a ZstandardCodec instance with the given compressionLevel, checksum, and bufferPool option -
Method Summary
Modifier and TypeMethodDescriptioncompress
(ByteBuffer data) Compresses the input datadecompress
(ByteBuffer compressedData) Decompress the databoolean
Codecs must implement an equals() method.getName()
Name of the codec; written to the file's metadata.int
hashCode()
Codecs must implement a hashCode() method that is consistent with equals().toString()
Methods inherited from class org.apache.avro.file.Codec
computeOffset
-
Field Details
-
DEFAULT_COMPRESSION
public static final int DEFAULT_COMPRESSION- See Also:
-
DEFAULT_USE_BUFFERPOOL
public static final boolean DEFAULT_USE_BUFFERPOOL- See Also:
-
-
Constructor Details
-
ZstandardCodec
public ZstandardCodec(int compressionLevel, boolean useChecksum, boolean useBufferPool) Create a ZstandardCodec instance with the given compressionLevel, checksum, and bufferPool option
-
-
Method Details
-
getName
Description copied from class:Codec
Name of the codec; written to the file's metadata. -
compress
Description copied from class:Codec
Compresses the input data- Specified by:
compress
in classCodec
- Throws:
IOException
-
decompress
Description copied from class:Codec
Decompress the data- Specified by:
decompress
in classCodec
- Throws:
IOException
-
hashCode
public int hashCode()Description copied from class:Codec
Codecs must implement a hashCode() method that is consistent with equals(). -
equals
Description copied from class:Codec
Codecs must implement an equals() method. Two codecs, A and B are equal if: the result of A and B decompressing content compressed by A is the same AND the result of A and B decompressing content compressed by B is the same -
toString
-