com.github.housepower.jdbc.buffer.BuffedWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clickhouse-native-jdbc Show documentation
Show all versions of clickhouse-native-jdbc Show documentation
ClickHouse Native Protocol JDBC implementation
package com.github.housepower.jdbc.buffer;
import java.io.IOException;
public interface BuffedWriter {
void writeBinary(byte byt) throws IOException;
void writeBinary(byte[] bytes) throws IOException;
void writeBinary(byte[] bytes, int offset, int length) throws IOException;
void flushToTarget(boolean force) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy