Class LazyDecompressingInputStream

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

    @Deprecated
    class LazyDecompressingInputStream
    extends java.io.FilterInputStream
    Deprecated.
    Superseded by DecompressingEntity.
    Lazy initializes from an InputStream wrapper.
    • Method Summary

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

        nullInputStream, readAllBytes, readNBytes, readNBytes, transferTo
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • wrapperStream

        private java.io.InputStream wrapperStream
        Deprecated.
    • Constructor Detail

      • LazyDecompressingInputStream

        public LazyDecompressingInputStream​(java.io.InputStream wrappedStream,
                                            InputStreamFactory inputStreamFactory)
        Deprecated.
    • Method Detail

      • initWrapper

        private java.io.InputStream initWrapper()
                                         throws java.io.IOException
        Deprecated.
        Throws:
        java.io.IOException
      • read

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

        public int read​(byte[] b)
                 throws java.io.IOException
        Deprecated.
        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
        Deprecated.
        Overrides:
        read in class java.io.FilterInputStream
        Throws:
        java.io.IOException
      • skip

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

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

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

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

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

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