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

com.clickhouse.data.ClickHouseWriter Maven / Gradle / Ivy

The newest version!
package com.clickhouse.data;

import java.io.IOException;

@FunctionalInterface
public interface ClickHouseWriter {
    static final String TYPE_NAME = "Writer";

    /**
     * Writes data to output stream.
     *
     * @param output non-null output stream
     * @throws IOException when failed to write data to output stream
     */
    void write(ClickHouseOutputStream output) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy