Interface | Description |
---|---|
CompressionCodec |
:: DeveloperApi ::
CompressionCodec allows the customization of choosing different compression implementations
to be used in block storage.
|
Class | Description |
---|---|
LZ4BlockInputStream |
InputStream implementation to decode data written with
LZ4BlockOutputStream . |
LZ4CompressionCodec |
:: DeveloperApi ::
LZ4 implementation of
CompressionCodec . |
LZFCompressionCodec |
:: DeveloperApi ::
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 . |
SnappyCompressionCodec |
:: DeveloperApi ::
Snappy implementation of
CompressionCodec . |
SnappyOutputStreamWrapper |
Wrapper over
SnappyOutputStream which guards against write-after-close and double-close
issues. |