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
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
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
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
- val clientContextId: String
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val metrics: Option[QueryMetrics]
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
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
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
- val warnings: Seq[QueryWarning]