Package org.apache.iceberg.puffin
Class Puffin.ReadBuilder
- java.lang.Object
-
- org.apache.iceberg.puffin.Puffin.ReadBuilder
-
- Enclosing class:
- Puffin
public static final class Puffin.ReadBuilder extends java.lang.Object
A builder forPuffinReader
.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PuffinReader
build()
Puffin.ReadBuilder
withFileSize(long size)
Passes known file size to the reader.Puffin.ReadBuilder
withFooterSize(long size)
Passes known footer size to the reader.
-
-
-
Method Detail
-
withFileSize
public Puffin.ReadBuilder withFileSize(long size)
Passes known file size to the reader. This may improve read performance.
-
withFooterSize
public Puffin.ReadBuilder withFooterSize(long size)
Passes known footer size to the reader. This may improve read performance.
-
build
public PuffinReader build()
-
-