com.clickhouse.data.ClickHouseRecordTransformer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clickhouse-data Show documentation
Show all versions of clickhouse-data Show documentation
Data processing utilities for ClickHouse
package com.clickhouse.data;
@FunctionalInterface
public interface ClickHouseRecordTransformer {
/**
* Updates values in the given record.
*
* @param rowIndex zero-based index of row
* @param r record to update
*/
void update(int rowIndex, ClickHouseRecord r);
}