Packages

c

com.couchbase.client.scala.search.result

ReactiveSearchResult

case class ReactiveSearchResult(rows: SFlux[SearchRow], facets: SMono[Map[String, SearchFacetResult]], meta: SMono[SearchMetaData]) extends Product with Serializable

The results of an FTS query, as returned by the reactive API.

rows

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

meta

any additional information related to the FTS query

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

Instance Constructors

  1. new ReactiveSearchResult(rows: SFlux[SearchRow], facets: SMono[Map[String, SearchFacetResult]], meta: SMono[SearchMetaData])

    rows

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

    meta

    any additional information related to the FTS query

Value Members

  1. val facets: SMono[Map[String, SearchFacetResult]]
  2. val meta: SMono[SearchMetaData]
  3. val rows: SFlux[SearchRow]