Packages

c

com.couchbase.client.scala.transactions

TransactionQueryResult

case class TransactionQueryResult extends Product with Serializable

The result of a N1QL query executed within a transaction, including rows and associated metadata.

Queries executed inside a transaction are always blocking/non-streaming, to allow essential error handling logic to reliably take place.

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

Value Members

  1. def metaData(): QueryMetaData

    Returns the QueryMetaData giving access to the additional metadata associated with this query.

  2. def productElementNames: Iterator[String]
    Definition Classes
    Product
  3. def rowsAs[T](implicit deserializer: JsonDeserializer[T]): Try[Seq[T]]