Packages

c

com.couchbase.client.scala.query

ReactiveQueryResult

case class ReactiveQueryResult(rows: SFlux[QueryChunkRow], metaData: SMono[QueryMetaData]) extends Product with Serializable

The results of a N1QL query, as returned by the reactive API.

metaData

any additional information related to the query

Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ReactiveQueryResult
  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 ReactiveQueryResult(rows: SFlux[QueryChunkRow], metaData: SMono[QueryMetaData])

    metaData

    any additional information related to the query

Value Members

  1. val metaData: SMono[QueryMetaData]
  2. def productElementNames: Iterator[String]
    Definition Classes
    Product
  3. def productIterator: Iterator[Any]
    Definition Classes
    Product
  4. def rowsAs[T](implicit deserializer: JsonDeserializer[T]): SFlux[T]

    A Flux of any returned rows, streamed directly from the query service.

    A Flux of any returned rows, streamed directly from the query service. If the query service returns an error while returning the rows, it will be raised on this.

    T

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