java.lang.Object
java.io.InputStream
java.io.FilterInputStream
com.aoapps.hodgepodge.io.DontCloseInputStream
- All Implemented Interfaces:
NoClose
,Closeable
,AutoCloseable
Deprecated.
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.
-
Field Summary
Fields inherited from class java.io.FilterInputStream
in
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
Deprecated.Does nothing on close to protect the wrapped InputStream.Methods inherited from class java.io.FilterInputStream
available, mark, markSupported, read, read, read, reset, skip
Methods inherited from class java.io.InputStream
nullInputStream, readAllBytes, readNBytes, readNBytes, transferTo
-
Constructor Details
-
DontCloseInputStream
Deprecated.
-
-
Method Details
-
close
public void close()Deprecated.Does nothing on close to protect the wrapped InputStream.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Specified by:
close
in interfaceNoClose
- Overrides:
close
in classFilterInputStream
-
NoCloseInputStream
instead