com.clickhouse.client.grpc.FramedLZ4Utils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clickhouse-grpc-client Show documentation
Show all versions of clickhouse-grpc-client Show documentation
gRPC client for ClickHouse planed to be deprecated from version 0.6.0 and removed at 0.7.0
package com.clickhouse.client.grpc;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
@Deprecated
final class FramedLZ4Utils {
static InputStream wrap(InputStream input) throws IOException {
return new org.apache.commons.compress.compressors.lz4.FramedLZ4CompressorInputStream(input);
}
static OutputStream wrap(OutputStream output) throws IOException {
return new org.apache.commons.compress.compressors.lz4.FramedLZ4CompressorOutputStream(output);
}
private FramedLZ4Utils() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy