Checksum
view of this instance.Checksum
view of this instance.src[srcOff:srcOff+srcLen]
into
dest[destOff:destOff+destLen]
and return the compressed
length.src[srcOff:srcOff+srcLen]
into
dest[destOff:destOff+destLen]
and return the compressed
length.compress(src, srcOff, srcLen, dest, destOff, dest.length - destOff)
.compress(src, 0, src.length, dest, 0)
.src[srcOff:srcOff+srcLen]
compressed.compress(src, 0, src.length)
.src
into dest
.src[srcOff:]
into dest[destOff:destOff+destLen]
and return the number of bytes read from src
.src[srcOff:]
into dest[destOff:destOff+destLen]
and return the number of bytes read from src
.decompress(src, 0, dest, 0, destLen)
.decompress(src, dest, dest.length)
.src[srcOff:?]
decompressed.decompress(src, 0, destLen)
.src
into dest
.src[srcOff:srcLen]
into
dest[destOff:destOff+maxDestLen]
and returns the number of
decompressed bytes written into dest
.src[srcOff:srcLen]
into
dest[destOff:destOff+maxDestLen]
and returns the number of
decompressed bytes written into dest
.decompress(src, srcOff, srcLen, dest, destOff, dest.length - destOff)
.decompress(src, 0, src.length, dest, 0)
src[srcOff:srcOff+srcLen]
decompressed.decompress(src, 0, src.length, maxDestLen)
.src
into dest
.LZ4Compressor
.LZ4FastDecompressor
instance.LZ4Factory
instance.XXHashFactory
instance.LZ4Factory
instance which does not
rely on JNI bindings.XXHashFactory
instance which does not
rely on JNI bindings.LZ4BlockOutputStream.close()
except that it doesn't close the underlying stream.OutputStream
.buf[off:off+len]
using seed
seed
.ByteBuffer
.ByteBuffer
.buf[off:off+len]
using seed
seed
.ByteBuffer
.ByteBuffer
.XXHash32
instance.XXHash64
instance.LZ4Compressor
which requires more memory than
LZ4Factory.fastCompressor()
and is slower but compresses more efficiently.LZ4Compressor
which requires more memory than
LZ4Factory.fastCompressor()
and is slower but compresses more efficiently.InputStream
implementation to decode data written with
LZ4BlockOutputStream
.InputStream
.XXHash32
for checksuming.LZ4FastDecompressor
available.OutputStream
with configurable block size.StreamingXXHash32
and doesn't sync flush.LZ4FastDecompressor
instead.LZ4SafeDecompressor
instead.length
.LZ4Factory
instance that returns compressors and
decompressors that are native bindings to the original C library.XXHashFactory
that returns XXHash32
instances that
are native bindings to the original C API.StreamingXXHash32
instance.StreamingXXHash64
instance.LZ4SafeDecompressor
instance.LZ4Factory
instance that returns compressors and
decompressors that are written with Java's official API.XXHashFactory
that returns XXHash32
instances that
are written with Java's official API.XXHash32
.XXHash64
.LZ4Factory
instance that returns compressors and
decompressors that may use Unsafe
to speed up compression
and decompression.XXHash32
and StreamingXXHash32
instances.