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