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