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

com.couchbase.client.java.kv.RemoveOptions Maven / Gradle / Ivy

There is a newer version: 3.7.2
Show newest version
/*
 * Copyright (c) 2018 Couchbase, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.couchbase.client.java.kv;

import com.couchbase.client.core.annotation.Stability;
import com.couchbase.client.core.error.CasMismatchException;

public class RemoveOptions extends CommonDurabilityOptions {

  private long cas;

  private RemoveOptions() { }

  public static RemoveOptions removeOptions() {
    return new RemoveOptions();
  }

  /**
   * Specifies a CAS value that will be taken into account on the server side for optimistic concurrency.
   * 

* The CAS value is an opaque identifier which is associated with a specific state of the document on the server. The * CAS value is received on read operations (or after mutations) and can be used during a subsequent mutation to * make sure that the document has not been modified in the meantime. *

* If document on the server has been modified in the meantime the SDK will raise a {@link CasMismatchException}. In * this case the caller is expected to re-do the whole "fetch-modify-update" cycle again. Please refer to the * SDK documentation for more information on CAS mismatches and subsequent retries. * * @param cas the opaque CAS identifier to use for this operation. * @return the {@link RemoveOptions} for chaining purposes. */ public RemoveOptions cas(long cas) { this.cas = cas; return this; } @Stability.Internal public Built build() { return new Built(); } public class Built extends BuiltCommonDurabilityOptions { Built() { } public long cas() { return cas; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy