tech.ydb.query.settings.AttachSessionSettings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ydb-sdk-query Show documentation
Show all versions of ydb-sdk-query Show documentation
YDB QueryService client implementation
package tech.ydb.query.settings;
import tech.ydb.core.settings.BaseRequestSettings;
/**
*
* @author Aleksandr Gorshenin
*/
public class AttachSessionSettings extends BaseRequestSettings {
private AttachSessionSettings(Builder builder) {
super(builder);
}
public static Builder newBuilder() {
return new Builder();
}
public static class Builder extends BaseBuilder {
@Override
public AttachSessionSettings build() {
return new AttachSessionSettings(this);
}
}
}