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

tech.ytsaurus.client.request.UnmountTable Maven / Gradle / Ivy

The newest version!
package tech.ytsaurus.client.request;

import tech.ytsaurus.client.rpc.RpcClientRequestBuilder;
import tech.ytsaurus.core.cypress.YPath;
import tech.ytsaurus.rpcproxy.TReqUnmountTable;

/**
 * Unmount table request.
 *
 * @see documentation
 * @see tech.ytsaurus.client.ApiServiceClient#unmountTable(UnmountTable)
 */
public class UnmountTable
        extends TableReq
        implements HighLevelRequest {
    private final boolean force;

    public UnmountTable(BuilderBase builder) {
        super(builder);
        this.force = builder.force;
    }

    public UnmountTable(YPath path) {
        this(builder().setPath(path.justPath()));
    }

    public static Builder builder() {
        return new Builder();
    }

    /**
     * Internal method: prepare request to send over network.
     */
    @Override
    public void writeTo(RpcClientRequestBuilder builder) {
        super.writeTo(builder.body());
        builder.body().setForce(force);
    }

    @Override
    public Builder toBuilder() {
        return builder()
                .setForce(force)
                .setMutatingOptions(mutatingOptions)
                .setPath(path)
                .setTabletRangeOptions(tabletRangeOptions)
                .setTimeout(timeout)
                .setRequestId(requestId)
                .setUserAgent(userAgent)
                .setTraceId(traceId, traceSampled)
                .setAdditionalData(additionalData);
    }

    public static class Builder extends BuilderBase {
        @Override
        protected Builder self() {
            return this;
        }
    }

    public abstract static class BuilderBase<
            TBuilder extends BuilderBase>
            extends TableReq.Builder {
        private boolean force = false;

        protected BuilderBase() {
        }

        protected BuilderBase(BuilderBase builder) {
            super(builder);
            this.force = builder.force;
        }

        /**
         * Force unmount.
         *
         * Dangerous: this flag should not be used unless you understand how it works.
         * Might lead to data loss.
         */
        public TBuilder setForce(boolean force) {
            this.force = force;
            return self();
        }

        @Override
        public UnmountTable build() {
            return new UnmountTable(this);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy