Class InStream.UncompressedStream

java.lang.Object
java.io.InputStream
org.apache.orc.impl.InStream
org.apache.orc.impl.InStream.UncompressedStream
All Implemented Interfaces:
Closeable, AutoCloseable
Direct Known Subclasses:
InStream.EncryptedStream
Enclosing class:
InStream

public static class InStream.UncompressedStream extends InStream
Implements a stream over an uncompressed stream.
  • Field Details

    • decrypted

      protected ByteBuffer decrypted
    • currentRange

      protected org.apache.hadoop.hive.common.io.DiskRangeList currentRange
    • currentOffset

      protected long currentOffset
  • Constructor Details

    • UncompressedStream

      public UncompressedStream(Object name, long offset, long length)
      Create the stream without calling reset on it. This is used for the subclass that needs to do more setup.
      Parameters:
      name - name of the stream
      length - the number of bytes for the stream
    • UncompressedStream

      public UncompressedStream(Object name, org.apache.hadoop.hive.common.io.DiskRangeList input, long offset, long length)
  • Method Details