Class ReactiveSearchResult
java.lang.Object
com.couchbase.client.java.search.result.ReactiveSearchResult
public class ReactiveSearchResult extends Object
-
Constructor Summary
Constructors Constructor Description ReactiveSearchResult(Flux<SearchRow> rows, Mono<Map<String,SearchFacetResult>> facets, Mono<SearchMetaData> meta)
-
Method Summary
Modifier and Type Method Description Mono<Map<String,SearchFacetResult>>
facets()
Mono<SearchMetaData>
metaData()
Any additional meta information associated with the FTS query, in the form of a reactiveMono
publisher.Flux<SearchRow>
rows()
The list of FTS result rows for the FTS query, in the form of a reactiveFlux
publisher.
-
Constructor Details
-
ReactiveSearchResult
public ReactiveSearchResult(Flux<SearchRow> rows, Mono<Map<String,SearchFacetResult>> facets, Mono<SearchMetaData> meta)
-
-
Method Details