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
Ordering
- Alphabetic
- By Inheritance
Inherited
- ReactiveViewResult
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
-
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
- val metaData: SMono[ViewMetaData]
- val rows: SFlux[ViewRow]