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

com.clickhouse.client.grpc.FramedLZ4Utils Maven / Gradle / Ivy

Go to download

gRPC client for ClickHouse planed to be deprecated from version 0.6.0 and removed at 0.7.0

There is a newer version: 0.6.4
Show newest version
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