Class ReactiveSearchResult
- java.lang.Object
-
- com.couchbase.client.java.search.result.ReactiveSearchResult
-
public class ReactiveSearchResult extends Object
-
-
Constructor Summary
Constructors Constructor Description ReactiveSearchResult(com.couchbase.client.core.api.search.result.CoreReactiveSearchResult internal, JsonSerializer serializer)
-
Method Summary
All Methods Instance Methods Concrete Methods 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 reactiveMonopublisher.Flux<SearchRow>rows()The list of FTS result rows for the FTS query, in the form of a reactiveFluxpublisher.
-
-
-
Constructor Detail
-
ReactiveSearchResult
@Internal public ReactiveSearchResult(com.couchbase.client.core.api.search.result.CoreReactiveSearchResult internal, JsonSerializer serializer)
-
-
Method Detail
-
rows
public Flux<SearchRow> rows()
The list of FTS result rows for the FTS query, in the form of a reactiveFluxpublisher.Any errors will be raised as onError on this.
-
metaData
public Mono<SearchMetaData> metaData()
Any additional meta information associated with the FTS query, in the form of a reactiveMonopublisher.
-
facets
public Mono<Map<String,SearchFacetResult>> facets()
-
-