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
Ordering
- Alphabetic
- By Inheritance
Inherited
- ReactiveQueryResult
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new ReactiveQueryResult(rows: SFlux[QueryChunkRow], metaData: SMono[QueryMetaData])
- metaData
any additional information related to the query
Value Members
- val metaData: SMono[QueryMetaData]
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- 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