tech.ydb.core.grpc.GrpcCompression Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ydb-sdk-core Show documentation
Show all versions of ydb-sdk-core Show documentation
Core module of Java SDK for YDB
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;
}
}