public class ViewRequest extends BaseRequest<ViewResponse> implements HttpRequest<ViewChunkHeader,ViewChunkRow,ViewChunkTrailer,ViewResponse>, ScopedRequest
Modifier and Type | Field and Description |
---|---|
static String |
OPERATION_NAME |
Constructor and Description |
---|
ViewRequest(Duration timeout,
CoreContext ctx,
RetryStrategy retryStrategy,
Authenticator authenticator,
String bucket,
String design,
String view,
String query,
Optional<byte[]> keysJson,
boolean development,
InternalSpan span) |
Modifier and Type | Method and Description |
---|---|
String |
bucket() |
ViewResponse |
decode(ResponseStatus status,
ViewChunkHeader header,
Flux<ViewChunkRow> rows,
Mono<ViewChunkTrailer> 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.
|
Map<String,Object> |
serviceContext()
Returns contextual information for each individual service.
|
ServiceType |
serviceType()
The service type of this request.
|
absoluteTimeout, cancel, cancellationReason, cancelled, completed, context, createdAt, fail, failed, id, internalSpan, response, retryStrategy, succeed, succeeded, timeout, timeoutElapsed
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
absoluteTimeout, cancel, cancellationReason, cancelled, completed, context, createdAt, fail, failed, id, internalSpan, operationId, response, retryStrategy, succeed, succeeded, timeout, timeoutElapsed
public static final String OPERATION_NAME
public ViewRequest(Duration timeout, CoreContext ctx, RetryStrategy retryStrategy, Authenticator authenticator, String bucket, String design, String view, String query, Optional<byte[]> keysJson, boolean development, InternalSpan span)
public ServiceType serviceType()
Request
serviceType
in interface Request<ViewResponse>
public com.couchbase.client.core.deps.io.netty.handler.codec.http.FullHttpRequest encode()
public ViewResponse decode(ResponseStatus status, ViewChunkHeader header, Flux<ViewChunkRow> rows, Mono<ViewChunkTrailer> trailer)
ChunkDecodable
decode
in interface ChunkDecodable<ViewChunkHeader,ViewChunkRow,ViewChunkTrailer,ViewResponse>
status
- the http response status.header
- the chunk header.rows
- the chunk rows.trailer
- the chunk trailer.public String bucket()
bucket
in interface ScopedRequest
public boolean idempotent()
Request
By 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<ViewResponse>
public Map<String,Object> serviceContext()
Request
serviceContext
in interface Request<ViewResponse>
serviceContext
in class BaseRequest<ViewResponse>
Copyright © 2020 Couchbase, Inc.. All rights reserved.