Packages

c

com.couchbase.client.scala.view

ReactiveViewResult

case class ReactiveViewResult(metaData: SMono[ViewMetaData], rows: SFlux[ViewRow]) extends Product with Serializable

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

metaData

contains additional information related to the view.

rows

a Flux of any returned rows. If the view service returns an error while returning the rows, it will be raised on this Flux

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

    metaData

    contains additional information related to the view.

    rows

    a Flux of any returned rows. If the view service returns an error while returning the rows, it will be raised on this Flux

Value Members

  1. val metaData: SMono[ViewMetaData]
  2. def productElementNames: Iterator[String]
    Definition Classes
    Product
  3. val rows: SFlux[ViewRow]