public class AnalyticsRequest extends BaseRequest<AnalyticsResponse> implements HttpRequest<AnalyticsChunkHeader,AnalyticsChunkRow,AnalyticsChunkTrailer,AnalyticsResponse>
| Modifier and Type | Field and Description |
|---|---|
static int |
NO_PRIORITY |
static String |
OPERATION_NAME |
| Constructor and Description |
|---|
AnalyticsRequest(Duration timeout,
CoreContext ctx,
RetryStrategy retryStrategy,
Authenticator authenticator,
byte[] query,
int priority,
boolean idempotent,
String contextId,
String statement,
InternalSpan span) |
| Modifier and Type | Method and Description |
|---|---|
AnalyticsResponse |
decode(ResponseStatus status,
AnalyticsChunkHeader header,
Flux<AnalyticsChunkRow> rows,
Mono<AnalyticsChunkTrailer> trailer)
Decodes a chunked response into the response format.
|
com.couchbase.client.core.deps.io.netty.handler.codec.http.FullHttpRequest |
encode() |
boolean |
idempotent()
Returns if the given request is idempotent or not.
|
String |
operationId()
Returns a potentially non-unique identifier that is useful for tracing output.
|
Map<String,Object> |
serviceContext()
Returns contextual information for each individual service.
|
ServiceType |
serviceType()
The service type of this request.
|
String |
statement() |
absoluteTimeout, cancel, cancellationReason, cancelled, completed, context, createdAt, fail, failed, id, internalSpan, response, retryStrategy, succeed, succeeded, timeout, timeoutElapsedclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitabsoluteTimeout, cancel, cancellationReason, cancelled, completed, context, createdAt, fail, failed, id, internalSpan, response, retryStrategy, succeed, succeeded, timeout, timeoutElapsedpublic static final String OPERATION_NAME
public static final int NO_PRIORITY
public AnalyticsRequest(Duration timeout, CoreContext ctx, RetryStrategy retryStrategy, Authenticator authenticator, byte[] query, int priority, boolean idempotent, String contextId, String statement, InternalSpan span)
public com.couchbase.client.core.deps.io.netty.handler.codec.http.FullHttpRequest encode()
public AnalyticsResponse decode(ResponseStatus status, AnalyticsChunkHeader header, Flux<AnalyticsChunkRow> rows, Mono<AnalyticsChunkTrailer> trailer)
ChunkDecodabledecode in interface ChunkDecodable<AnalyticsChunkHeader,AnalyticsChunkRow,AnalyticsChunkTrailer,AnalyticsResponse>status - the http response status.header - the chunk header.rows - the chunk rows.trailer - the chunk trailer.public ServiceType serviceType()
RequestserviceType in interface Request<AnalyticsResponse>public boolean idempotent()
RequestBy default, this method always returns false for data consistency reasons. Only specific idempotent operations should override this default since it impacts retry handling quite a bit. DO NOT SET THIS TO TRUE ON MUTATING OPERATIONS!
idempotent in interface Request<AnalyticsResponse>public String operationId()
RequestNote: might be null! It depends on the type of operation. It is also different from the unqiue operation ID that increments to provide additional context (i.e in query the context uuid, in kv the opaque value).
operationId in interface Request<AnalyticsResponse>public String statement()
public Map<String,Object> serviceContext()
RequestserviceContext in interface Request<AnalyticsResponse>serviceContext in class BaseRequest<AnalyticsResponse>Copyright © 2020 Couchbase, Inc.. All rights reserved.