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
- Alphabetic
- By Inheritance
- QueryMetaData
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- 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
- val clientContextId: String
- val metrics: Option[QueryMetrics]
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- 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
- val requestId: String
- 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
- val status: QueryStatus
- val warnings: Seq[QueryWarning]