Class AnalyticsResponse
- java.lang.Object
-
- com.couchbase.client.core.msg.BaseResponse
-
- com.couchbase.client.core.msg.analytics.AnalyticsResponse
-
- All Implemented Interfaces:
ChunkedResponse<AnalyticsChunkHeader,AnalyticsChunkRow,AnalyticsChunkTrailer>,Response
public class AnalyticsResponse extends BaseResponse implements ChunkedResponse<AnalyticsChunkHeader,AnalyticsChunkRow,AnalyticsChunkTrailer>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RuntimeExceptionerrorIncompleteResponse()static RuntimeExceptionerrorProfileNotPresent()static RuntimeExceptionerrorSignatureNotPresent()AnalyticsChunkHeaderheader()Returns the header for this response, immediately available.Flux<AnalyticsChunkRow>rows()Returns the rows for this response, available pushed as they come streaming in.StringtoString()Mono<AnalyticsChunkTrailer>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
-
-
-
-
Method Detail
-
errorSignatureNotPresent
public static RuntimeException errorSignatureNotPresent()
-
errorProfileNotPresent
public static RuntimeException errorProfileNotPresent()
-
errorIncompleteResponse
public static RuntimeException errorIncompleteResponse()
-
header
public AnalyticsChunkHeader header()
Description copied from interface:ChunkedResponseReturns the header for this response, immediately available.- Specified by:
headerin interfaceChunkedResponse<AnalyticsChunkHeader,AnalyticsChunkRow,AnalyticsChunkTrailer>
-
rows
public Flux<AnalyticsChunkRow> rows()
Description copied from interface:ChunkedResponseReturns the rows for this response, available pushed as they come streaming in.- Specified by:
rowsin interfaceChunkedResponse<AnalyticsChunkHeader,AnalyticsChunkRow,AnalyticsChunkTrailer>
-
trailer
public Mono<AnalyticsChunkTrailer> trailer()
Description copied from interface:ChunkedResponseReturns the trailer for this response, available at the end of the response eventually.- Specified by:
trailerin interfaceChunkedResponse<AnalyticsChunkHeader,AnalyticsChunkRow,AnalyticsChunkTrailer>
-
toString
public String toString()
- Overrides:
toStringin classBaseResponse
-
-