All Downloads are FREE. Search and download functionalities are using the official Maven repository.

blue.strategic.parquet.Dehydrator Maven / Gradle / Ivy

package blue.strategic.parquet;


/**
 * Dehydrates a rich java object into a Parquet row.
 */
public interface Dehydrator {
    /**
     * Write the specified record into the Parquet row using the supplied writer.
     * @param record the rich java object
     * @param valueWriter facilitates writing to the Parquet row
     */
    void dehydrate(T record, ValueWriter valueWriter);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy