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
Ordering
- Alphabetic
- By Inheritance
Inherited
- ViewMetaData
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- 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
- 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
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val totalRows: Long