Class DontCloseInputStream

java.lang.Object
java.io.InputStream
java.io.FilterInputStream
com.aoapps.hodgepodge.io.DontCloseInputStream
All Implemented Interfaces:
NoClose, Closeable, AutoCloseable

@Deprecated public class DontCloseInputStream extends FilterInputStream implements NoClose
Deprecated.
Please use NoCloseInputStream instead
Wraps an InputStream to protect it from close calls. This is useful for at least GZIPInputStream where the native resources of the GZIPInputStream need to be released using the close call while the underlying stream is left intact.
Author:
AO Industries, Inc.
  • Constructor Details

    • DontCloseInputStream

      public DontCloseInputStream(InputStream in)
      Deprecated.
  • Method Details