Package io.deephaven.parquet.table
Class CompletedParquetWrite
java.lang.Object
io.deephaven.parquet.table.CompletedParquetWrite
This class is used as a return POJO for the result of a Parquet write operation.
It is intended to be used with the ParquetInstructions.onWriteCompleted()
callback.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic io.deephaven.parquet.table.CompletedParquetWrite.Builder
builder()
abstract URI
The destination URI of the written Parquet file.abstract long
numBytes()
The number of bytes written to the Parquet file.abstract long
numRows()
The number of rows written to the Parquet file.
-
Constructor Details
-
CompletedParquetWrite
public CompletedParquetWrite()
-
-
Method Details
-
destination
The destination URI of the written Parquet file. -
numRows
public abstract long numRows()The number of rows written to the Parquet file. -
numBytes
public abstract long numBytes()The number of bytes written to the Parquet file. -
builder
public static io.deephaven.parquet.table.CompletedParquetWrite.Builder builder()
-