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