tech.ydb.core.Constants 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;
/**
* @author Sergey Polovko
*/
final class Constants {
static final int SERVER_STATUSES_FIRST = 400000;
static final int TRANSPORT_STATUSES_FIRST = 401000;
static final int TRANSPORT_STATUSES_LAST = 401999;
static final int INTERNAL_CLIENT_FIRST = 402000;
private Constants() { }
}