Class SearchResponse
java.lang.Object
com.couchbase.client.core.msg.BaseResponse
com.couchbase.client.core.msg.search.SearchResponse
- All Implemented Interfaces:
ChunkedResponse<SearchChunkHeader,SearchChunkRow,SearchChunkTrailer>
,Response
public class SearchResponse extends BaseResponse implements ChunkedResponse<SearchChunkHeader,SearchChunkRow,SearchChunkTrailer>
-
Method Summary
Modifier and Type Method Description SearchChunkHeader
header()
Returns the header for this response, immediately available.Flux<SearchChunkRow>
rows()
Returns the rows for this response, available pushed as they come streaming in.Mono<SearchChunkTrailer>
trailer()
Returns the trailer for this response, available at the end of the response eventually.Methods inherited from class com.couchbase.client.core.msg.BaseResponse
status, toString
-
Method Details
-
header
Description copied from interface:ChunkedResponse
Returns the header for this response, immediately available.- Specified by:
header
in interfaceChunkedResponse<SearchChunkHeader,SearchChunkRow,SearchChunkTrailer>
-
rows
Description copied from interface:ChunkedResponse
Returns the rows for this response, available pushed as they come streaming in.- Specified by:
rows
in interfaceChunkedResponse<SearchChunkHeader,SearchChunkRow,SearchChunkTrailer>
-
trailer
Description copied from interface:ChunkedResponse
Returns the trailer for this response, available at the end of the response eventually.- Specified by:
trailer
in interfaceChunkedResponse<SearchChunkHeader,SearchChunkRow,SearchChunkTrailer>
-