Class CompletedParquetWrite

java.lang.Object
io.deephaven.parquet.table.CompletedParquetWrite

@Immutable public abstract class CompletedParquetWrite extends Object
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 Details

    • CompletedParquetWrite

      public CompletedParquetWrite()
  • Method Details

    • destination

      public abstract URI 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()