case class LookupInResult(id: String, content: Seq[SubDocumentField], flags: Int, cas: Long, expiry: Option[Duration], transcoder: Transcoder) extends Product with Serializable
The results of a SubDocument 'lookupIn' operation.
When doing a lookupIn
the application provides a sequence of LookupInSpec. The indexes into this sequence
are used when retrieving the results.
- id
the unique identifier of the document
- cas
the document's CAS value at the time of the lookup
- Alphabetic
- By Inheritance
- LookupInResult
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
-
new
LookupInResult(id: String, content: Seq[SubDocumentField], flags: Int, cas: Long, expiry: Option[Duration], transcoder: Transcoder)
- id
the unique identifier of the document
- cas
the document's CAS value at the time of the lookup
Value Members
- val cas: Long
-
def
contentAs[T](index: Int)(implicit deserializer: JsonDeserializer[T], tag: scala.reflect.api.JavaUniverse.WeakTypeTag[T]): Try[T]
Retrieve the content returned for a particular
LookupInSpec
, converted into the application's preferred representation.Retrieve the content returned for a particular
LookupInSpec
, converted into the application's preferred representation.- T
this can be of any type for which an implicit
com.couchbase.client.scala.codec.JsonDeserializer
can be found: a list of types that are supported 'out of the box' is available at these JSON docs. For anexists
operation, only an output type ofBoolean
is supported.- index
the index of the LookupInSpec provided to the
lookupIn
-
def
exists(index: Int): Boolean
Returns whether content has successfully been returned for a particular
LookupInSpec
.Returns whether content has successfully been returned for a particular
LookupInSpec
.Important note: be careful with the naming similarity to the
exists
LookupInSpec
, which will return a field with thisexists(idx) == true
and.contentAs[Boolean](idx) == true|false
- index
the index of the LookupInSpec provided to the
lookupIn
- val expiry: Option[Duration]
- val id: String
- val transcoder: Transcoder