Class FramedLZ4CompressorInputStream

    • Constructor Detail

      • FramedLZ4CompressorInputStream

        public FramedLZ4CompressorInputStream​(InputStream in)
                                       throws IOException
        Creates a new input stream that decompresses streams compressed using the LZ4 frame format and stops after decompressing the first frame.
        Parameters:
        in - the InputStream from which to read the compressed data
        Throws:
        IOException - if reading fails
      • FramedLZ4CompressorInputStream

        public FramedLZ4CompressorInputStream​(InputStream in,
                                              boolean decompressConcatenated)
                                       throws IOException
        Creates a new input stream that decompresses streams compressed using the LZ4 frame format.
        Parameters:
        in - the InputStream from which to read the compressed data
        decompressConcatenated - if true, decompress until the end of the input; if false, stop after the first LZ4 frame and leave the input position to point to the next byte after the frame stream
        Throws:
        IOException - if reading fails