com.yandex.ydb.table.impl.SchemeClientBuilderImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ydb-sdk-jdbc-uberjar Show documentation
Show all versions of ydb-sdk-jdbc-uberjar Show documentation
JDBC client implementation over Table client, single jar
package com.yandex.ydb.table.impl;
import com.yandex.ydb.table.SchemeClient;
import com.yandex.ydb.table.rpc.SchemeRpc;
/**
* @author Sergey Polovko
*/
public class SchemeClientBuilderImpl implements SchemeClient.Builder {
protected final SchemeRpc schemeRpc;
public SchemeClientBuilderImpl(SchemeRpc schemeRpc) {
this.schemeRpc = schemeRpc;
}
@Override
public SchemeClient build() {
return new SchemeClientImpl(this);
}
}