c

com.couchbase.client.scala.kv

CounterResult

case class CounterResult(cas: Long, mutationToken: Option[MutationToken], content: Long) extends HasDurabilityTokens with Product with Serializable

Contains the result of a successful mutation against a counter document or field.

cas

each Couchbase document has a CAS value, which is increased (not necessarily monotonically) on each successful mutation. This is the updated post-mutation value.

mutationToken

if the com.couchbase.client.scala.env.ClusterEnvironment's ioConfig() .mutationTokensEnabled() field is true (which is recommended), this will contain a MutationToken providing additional context on the mutation.

content

the post-update content of the counter

Linear Supertypes
Serializable, Serializable, Product, Equals, HasDurabilityTokens, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CounterResult
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. HasDurabilityTokens
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new CounterResult(cas: Long, mutationToken: Option[MutationToken], content: Long)

    cas

    each Couchbase document has a CAS value, which is increased (not necessarily monotonically) on each successful mutation. This is the updated post-mutation value.

    mutationToken

    if the com.couchbase.client.scala.env.ClusterEnvironment's ioConfig() .mutationTokensEnabled() field is true (which is recommended), this will contain a MutationToken providing additional context on the mutation.

    content

    the post-update content of the counter

Value Members

  1. val cas: Long
    Definition Classes
    CounterResult → HasDurabilityTokens
  2. val content: Long
  3. val mutationToken: Option[MutationToken]
    Definition Classes
    CounterResult → HasDurabilityTokens