case class MutationResult(cas: Long, mutationToken: Option[MutationToken]) extends HasDurabilityTokens with Product with Serializable
Contains the result of a successful mutation.
- 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.
- Since
1.0.0
- Alphabetic
- By Inheritance
- MutationResult
- Serializable
- Serializable
- Product
- Equals
- HasDurabilityTokens
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
-
new
MutationResult(cas: Long, mutationToken: Option[MutationToken])
- 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.
Value Members
-
val
cas: Long
- Definition Classes
- MutationResult → HasDurabilityTokens
-
val
mutationToken: Option[MutationToken]
- Definition Classes
- MutationResult → HasDurabilityTokens