Interface | Description |
---|---|
CompressionCodec | Developer API
CompressionCodec allows the customization of choosing different compression implementations
to be used in block storage.
|
Class | Description |
---|---|
LZ4CompressionCodec | Developer API
LZ4 implementation of
CompressionCodec . |
LZFCompressionCodec | Developer API
LZF implementation of
CompressionCodec . |
NioBufferedFileInputStream |
InputStream implementation which uses direct buffer
to read a file to avoid extra copy of data between Java and
native memory which happens when using BufferedInputStream . |
ReadAheadInputStream |
InputStream implementation which asynchronously reads ahead from the underlying input
stream when specified amount of data has been read from the current buffer. |
SnappyCompressionCodec | Developer API
Snappy implementation of
CompressionCodec . |
SnappyOutputStreamWrapper |
Wrapper over
SnappyOutputStream which guards against write-after-close and double-close
issues. |
ZStdCompressionCodec | Developer API
ZStandard implementation of
CompressionCodec . |