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

io.delta.flink.source.internal.builder.FormatBuilder Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package io.delta.flink.source.internal.builder;

import java.util.List;

/**
 * An interface for {@link DeltaBulkFormat} builder implementations.
 *
 * @param  Type of element produced by created {@link DeltaBulkFormat}
 */
public interface FormatBuilder {

    DeltaBulkFormat build();

    FormatBuilder partitionColumns(List partitionColumns);

    FormatBuilder parquetBatchSize(int size);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy