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 aMutationToken
providing additional context on the mutation.- content
the post-update content of the counter
- Alphabetic
- By Inheritance
- CounterResult
- Serializable
- Product
- Equals
- HasDurabilityTokens
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- 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 aMutationToken
providing additional context on the mutation.- content
the post-update content of the counter
Value Members
- val cas: Long
- Definition Classes
- CounterResult → HasDurabilityTokens
- val content: Long
- val mutationToken: Option[MutationToken]
- Definition Classes
- CounterResult → HasDurabilityTokens
- def productElementNames: Iterator[String]
- Definition Classes
- Product