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

tech.ydb.core.grpc.GrpcCompression Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
package tech.ydb.core.grpc;

/**
 *
 * @author Aleksandr Gorshenin
 */
public enum GrpcCompression {
    NO_COMPRESSION(null),
    GZIP("gzip");

    private final String compressor;

    GrpcCompression(String compressor) {
        this.compressor = compressor;
    }

    public String compressor() {
        return this.compressor;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy