Packages

case class ViewMetaData(debug: Option[Array[Byte]], totalRows: Long) extends Product with Serializable

Additional information returned by the view service aside from any rows and errors.

debug

any debug information available from the view service

totalRows

the total number of returned rows

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

Instance Constructors

  1. new ViewMetaData(debug: Option[Array[Byte]], totalRows: Long)

    debug

    any debug information available from the view service

    totalRows

    the total number of returned rows

Value Members

  1. def debugAs[T](implicit deserializer: JsonDeserializer[T]): Option[T]

    Return the content, converted into the application's preferred representation.

    Return the content, converted into the application's preferred representation.

    The content is JSON array, so a suitable representation would be com.couchbase.client.scala.json.JsonObject

  2. def productElementNames: Iterator[String]
    Definition Classes
    Product
  3. val totalRows: Long