Class RawAnalyticsResponse
- java.lang.Object
-
- com.couchbase.client.core.message.AbstractCouchbaseResponse
-
- com.couchbase.client.core.message.analytics.RawAnalyticsResponse
-
- All Implemented Interfaces:
CouchbaseMessage
,CouchbaseResponse
@Uncommitted @Public public class RawAnalyticsResponse extends AbstractCouchbaseResponse
The response to aRawAnalyticsRequest
, which only contains the raw JSON payload returned by the Analytics service, as aByteBuf
. The response is only made available once all of the data has been emitted by the server (no streaming of rows as they come like inGenericAnalyticsResponse
.- Since:
- 1.4.3
- Author:
- Simon Baslé
-
-
Constructor Summary
Constructors Constructor Description RawAnalyticsResponse(ResponseStatus status, CouchbaseRequest request, ByteBuf jsonResponse, int httpStatusCode, String httpStatusMsg)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
httpStatusCode()
String
httpStatusMsg()
ByteBuf
jsonResponse()
-
Methods inherited from class com.couchbase.client.core.message.AbstractCouchbaseResponse
creationTime, request, status, statusDetails, statusDetails, toString
-
-
-
-
Constructor Detail
-
RawAnalyticsResponse
public RawAnalyticsResponse(ResponseStatus status, CouchbaseRequest request, ByteBuf jsonResponse, int httpStatusCode, String httpStatusMsg)
-
-