Class ReleasableInputStream

  • All Implemented Interfaces:
    Closeable, AutoCloseable, Releasable
    Direct Known Subclasses:
    ResettableInputStream

    @NotThreadSafe
    public class ReleasableInputStream
    extends SdkFilterInputStream
    An input stream that can have the close operation disabled (to avoid accidentally being closed). This is necessary, for example, when an input stream needs to be marked-and-reset multiple times but only as long as the input stream has not been closed. To survive not being accidentally closed, the close method can be disabled via disableClose().

    The creator of this input stream should therefore always call release() in a finally block to truly release the underlying resources.

    See Also:
    Releasable, ResettableInputStream
    • Constructor Detail

      • ReleasableInputStream

        protected ReleasableInputStream​(InputStream is)
        This constructor is not meant to be used directly. Use wrap(InputStream) instead.
    • Method Detail

      • close

        public final void close()
        If closeDisabled is false, closes this input stream and releases any system resources associated with the stream. Otherwise, this method does nothing.
        Specified by:
        close in interface AutoCloseable
        Specified by:
        close in interface Closeable
        Overrides:
        close in class SdkFilterInputStream
      • isCloseDisabled

        public final boolean isCloseDisabled()
        Returns true if the close method has been disabled; false otherwise. Once the close method is disabled, caller would be responsible to release resources via release().
      • disableClose

        public final <T extends ReleasableInputStream> T disableClose()
        Used to disable the close method. Once the close method is disabled, caller would be responsible to release resources via release().