c

com.couchbase.client.scala.kv

LookupInResult

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

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

Instance Constructors

  1. 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

  1. val cas: Long
  2. 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 an exists operation, only an output type of Boolean is supported.

    index

    the index of the LookupInSpec provided to the lookupIn

  3. 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 this exists(idx) == true and .contentAs[Boolean](idx) == true|false

    index

    the index of the LookupInSpec provided to the lookupIn

  4. val expiry: Option[Duration]
  5. val id: String
  6. val transcoder: Transcoder