net.jpountz.lz4
Class LZ4FrameInputStream
- java.lang.Object
-
- java.io.InputStream
-
- java.io.FilterInputStream
-
- net.jpountz.lz4.LZ4FrameInputStream
-
- All Implemented Interfaces:
- java.io.Closeable, java.lang.AutoCloseable
public class LZ4FrameInputStream extends java.io.FilterInputStreamA partial implementation of the v1.5.1 LZ4 Frame format. This class is NOT thread safe Not Supported: * Dependent blocks * Legacy streams- See Also:
- LZ4 Framing Format Spec 1.5.1 Originally based on kafka's KafkaLZ4BlockInputStream
-
-
Constructor Summary
Constructors Constructor and Description LZ4FrameInputStream(java.io.InputStream in)Create a newInputStreamthat will decompress data using the LZ4 algorithm.LZ4FrameInputStream(java.io.InputStream in, LZ4SafeDecompressor decompressor, XXHash32 checksum)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description intavailable()voidclose()voidmark(int readlimit)booleanmarkSupported()intread()intread(byte[] b, int off, int len)voidreset()longskip(long n)
-
-
-
Constructor Detail
-
LZ4FrameInputStream
public LZ4FrameInputStream(java.io.InputStream in) throws java.io.IOExceptionCreate a newInputStreamthat will decompress data using the LZ4 algorithm.- Parameters:
in- The stream to decompress- Throws:
java.io.IOException
-
LZ4FrameInputStream
public LZ4FrameInputStream(java.io.InputStream in, LZ4SafeDecompressor decompressor, XXHash32 checksum) throws java.io.IOException- Throws:
java.io.IOException
-
-
Method Detail
-
read
public int read() throws java.io.IOException- Overrides:
readin classjava.io.FilterInputStream- Throws:
java.io.IOException
-
read
public int read(byte[] b, int off, int len) throws java.io.IOException- Overrides:
readin classjava.io.FilterInputStream- Throws:
java.io.IOException
-
skip
public long skip(long n) throws java.io.IOException- Overrides:
skipin classjava.io.FilterInputStream- Throws:
java.io.IOException
-
available
public int available() throws java.io.IOException- Overrides:
availablein classjava.io.FilterInputStream- Throws:
java.io.IOException
-
close
public void close() throws java.io.IOException- Specified by:
closein interfacejava.io.Closeable- Specified by:
closein interfacejava.lang.AutoCloseable- Overrides:
closein classjava.io.FilterInputStream- Throws:
java.io.IOException
-
mark
public void mark(int readlimit)
- Overrides:
markin classjava.io.FilterInputStream
-
reset
public void reset() throws java.io.IOException- Overrides:
resetin classjava.io.FilterInputStream- Throws:
java.io.IOException
-
markSupported
public boolean markSupported()
- Overrides:
markSupportedin classjava.io.FilterInputStream
-
-
DMelt 3.0 © DataMelt by jWork.ORG