Class ReactiveSearchResult
java.lang.Object
com.couchbase.client.java.search.result.ReactiveSearchResult
public class ReactiveSearchResult extends Object
-
Constructor Summary
Constructors Constructor Description ReactiveSearchResult(reactor.core.publisher.Flux<SearchRow> rows, reactor.core.publisher.Mono<Map<String,SearchFacetResult>> facets, reactor.core.publisher.Mono<SearchMetaData> meta)
-
Method Summary
Modifier and Type Method Description reactor.core.publisher.Mono<Map<String,SearchFacetResult>>
facets()
reactor.core.publisher.Mono<SearchMetaData>
metaData()
Any additional meta information associated with the FTS query, in the form of a reactiveMono
publisher.reactor.core.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(reactor.core.publisher.Flux<SearchRow> rows, reactor.core.publisher.Mono<Map<String,SearchFacetResult>> facets, reactor.core.publisher.Mono<SearchMetaData> meta)
-
-
Method Details
-
rows
The list of FTS result rows for the FTS query, in the form of a reactiveFlux
publisher.Any errors will be raised as onError on this.
-
metaData
Any additional meta information associated with the FTS query, in the form of a reactiveMono
publisher. -
facets
-