Package io.trino.orc.stream
Interface LongInputStream
-
- All Superinterfaces:
ValueInputStream<LongStreamCheckpoint>
- All Known Implementing Classes:
LongInputStreamV1,LongInputStreamV2
public interface LongInputStream extends ValueInputStream<LongStreamCheckpoint>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description longnext()voidnext(int[] values, int items)voidnext(long[] values, int items)voidnext(short[] values, int items)default longsum(int items)-
Methods inherited from interface io.trino.orc.stream.ValueInputStream
seekToCheckpoint, skip
-
-
-
-
Method Detail
-
next
long next() throws IOException
- Throws:
IOException
-
next
void next(long[] values, int items) throws IOException- Throws:
IOException
-
next
void next(int[] values, int items) throws IOException- Throws:
IOException
-
next
void next(short[] values, int items) throws IOException- Throws:
IOException
-
sum
default long sum(int items) throws IOException- Throws:
IOException
-
-