Class ReactiveSearchResult
- java.lang.Object
-
- com.couchbase.client.java.search.result.ReactiveSearchResult
-
public class ReactiveSearchResult extends Object
-
-
Constructor Summary
Constructors Constructor Description ReactiveSearchResult(Flux<SearchQueryRow> rows, Mono<SearchMeta> meta)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Mono<SearchMeta>
meta()
Any additional meta information associated with the FTS query, in the form of a reactiveMono
publisher.Flux<SearchQueryRow>
rows()
The list of FTS result rows for the FTS query, in the form of a reactiveFlux
publisher.
-
-
-
Constructor Detail
-
ReactiveSearchResult
public ReactiveSearchResult(Flux<SearchQueryRow> rows, Mono<SearchMeta> meta)
-
-
Method Detail
-
rows
public Flux<SearchQueryRow> 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.
-
meta
public Mono<SearchMeta> meta()
Any additional meta information associated with the FTS query, in the form of a reactiveMono
publisher.
-
-