Package dev.vortex.api
Class VortexWriteSummary
java.lang.Object
dev.vortex.api.VortexWriteSummary
Immutable metadata returned after a Vortex writer has finalized its file.
-
Constructor Summary
ConstructorsConstructorDescriptionVortexWriteSummary(long fileSize, long rowCount, VortexColumnStatistics[] columnStatistics) Construct a native write summary. -
Method Summary
-
Constructor Details
-
VortexWriteSummary
Construct a native write summary.This constructor is public so the JNI implementation can instantiate the value without reflective access. Applications should obtain summaries from
VortexWriter.finish().
-
-
Method Details
-
fileSize
public long fileSize()Exact size of the completed file in bytes. -
rowCount
public long rowCount()Exact number of rows written to the file. -
columnStatistics
Per-column statistics in Arrow schema order.
-