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

tech.ydb.export.settings.FindExportSettings Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
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);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy