Interface RangeWriter

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void writeTo​(java.io.OutputStream outputStream, long skipTo, long length)
      Write the specific range (start, size) to the outputStream.
      • Methods inherited from interface java.io.Closeable

        close
    • Method Detail

      • writeTo

        void writeTo​(java.io.OutputStream outputStream,
                     long skipTo,
                     long length)
              throws java.io.IOException
        Write the specific range (start, size) to the outputStream.
        Parameters:
        outputStream - the stream to write to
        skipTo - the offset / skip-to / seek-to / position in the resource to start the write from
        length - the size of the section to write
        Throws:
        java.io.IOException