Packages

case class QueryMetaData(requestId: String, clientContextId: String, _signatureContent: Option[Array[Byte]], metrics: Option[QueryMetrics], warnings: Seq[QueryWarning], status: QueryStatus, _profileContent: Option[Array[Byte]]) extends Product with Serializable

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

requestId

the request identifier string of the query request

clientContextId

the client context id passed into com.couchbase.client.scala.query.QueryOptions

metrics

metrics related to the query request, if they were enabled in com.couchbase.client.scala.query.QueryOptions

warnings

any warnings returned from the query service

status

the status returned from the query service

Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. QueryMetaData
  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 QueryMetaData(requestId: String, clientContextId: String, _signatureContent: Option[Array[Byte]], metrics: Option[QueryMetrics], warnings: Seq[QueryWarning], status: QueryStatus, _profileContent: Option[Array[Byte]])

    requestId

    the request identifier string of the query request

    clientContextId

    the client context id passed into com.couchbase.client.scala.query.QueryOptions

    metrics

    metrics related to the query request, if they were enabled in com.couchbase.client.scala.query.QueryOptions

    warnings

    any warnings returned from the query service

    status

    the status returned from the query service

Value Members

  1. val clientContextId: String
  2. val metrics: Option[QueryMetrics]
  3. def productElementNames: Iterator[String]
    Definition Classes
    Product
  4. def profileAs[T](implicit deserializer: JsonDeserializer[T]): Try[T]

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

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

    Note a profile must first be requested with QueryOptions.profile.

    T

    any supported type; see these JSON docs for a full list

  5. val requestId: String
  6. def signatureAs[T](implicit deserializer: JsonDeserializer[T]): Try[T]

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

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

    T

    any supported type; see these JSON docs for a full list

  7. val status: QueryStatus
  8. val warnings: Seq[QueryWarning]