Documentation of 'net.jpountz.lz4.LZ4FrameInputStream' Java class
LZ4FrameInputStream
net.jpountz.lz4

Class LZ4FrameInputStream

  • All Implemented Interfaces:
    java.io.Closeable, java.lang.AutoCloseable


    public class LZ4FrameInputStream
    extends java.io.FilterInputStream
    A 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
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      int available() 
      void close() 
      void mark(int readlimit) 
      boolean markSupported() 
      int read() 
      int read(byte[] b, int off, int len) 
      void reset() 
      long skip(long n) 
      • Methods inherited from class java.io.FilterInputStream

        read
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • LZ4FrameInputStream

        public LZ4FrameInputStream(java.io.InputStream in)
                            throws java.io.IOException
        Create a new InputStream that 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:
        read in class java.io.FilterInputStream
        Throws:
        java.io.IOException
      • read

        public int read(byte[] b,
                        int off,
                        int len)
                 throws java.io.IOException
        Overrides:
        read in class java.io.FilterInputStream
        Throws:
        java.io.IOException
      • skip

        public long skip(long n)
                  throws java.io.IOException
        Overrides:
        skip in class java.io.FilterInputStream
        Throws:
        java.io.IOException
      • available

        public int available()
                      throws java.io.IOException
        Overrides:
        available in class java.io.FilterInputStream
        Throws:
        java.io.IOException
      • close

        public void close()
                   throws java.io.IOException
        Specified by:
        close in interface java.io.Closeable
        Specified by:
        close in interface java.lang.AutoCloseable
        Overrides:
        close in class java.io.FilterInputStream
        Throws:
        java.io.IOException
      • mark

        public void mark(int readlimit)
        Overrides:
        mark in class java.io.FilterInputStream
      • reset

        public void reset()
                   throws java.io.IOException
        Overrides:
        reset in class java.io.FilterInputStream
        Throws:
        java.io.IOException
      • markSupported

        public boolean markSupported()
        Overrides:
        markSupported in class java.io.FilterInputStream

DMelt 3.0 © DataMelt by jWork.ORG

You see the box below because you did not login.