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

tech.ydb.scheme.impl.SchemeClientBuilderImpl Maven / Gradle / Ivy

package tech.ydb.scheme.impl;

import tech.ydb.scheme.SchemeClient;



/**
 * @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);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy