Class ViewRequest
java.lang.Object
com.couchbase.client.core.msg.BaseRequest<ViewResponse>
com.couchbase.client.core.msg.view.ViewRequest
- All Implemented Interfaces:
ChunkDecodable<ViewChunkHeader,,ViewChunkRow, ViewChunkTrailer, ViewResponse> Encodable<com.couchbase.client.core.deps.io.netty.handler.codec.http.FullHttpRequest>,HttpRequest<ViewChunkHeader,,ViewChunkRow, ViewChunkTrailer, ViewResponse> Request<ViewResponse>,ScopedRequest
public class ViewRequest
extends BaseRequest<ViewResponse>
implements HttpRequest<ViewChunkHeader,ViewChunkRow,ViewChunkTrailer,ViewResponse>, ScopedRequest
-
Constructor Summary
ConstructorsConstructorDescriptionViewRequest(Duration timeout, CoreContext ctx, RetryStrategy retryStrategy, Authenticator authenticator, String bucket, String design, String view, String query, Optional<byte[]> keysJson, boolean development, RequestSpan span) -
Method Summary
Modifier and TypeMethodDescriptionbucket()Returns the name of the bucket this request is scoped to, or null if not scoped to a bucket.decode(ResponseStatus status, ViewChunkHeader header, reactor.core.publisher.Flux<ViewChunkRow> rows, reactor.core.publisher.Mono<ViewChunkTrailer> trailer) Decodes a chunked response into the response format.com.couchbase.client.core.deps.io.netty.handler.codec.http.FullHttpRequestencode()booleanReturns if the given request is idempotent or not.name()The unique name of the request, usually related to the type but not necessarily.Returns contextual information for each individual service.The service type of this request.Methods inherited from class com.couchbase.client.core.msg.BaseRequest
absoluteTimeout, cancel, cancellationReason, cancelled, completed, context, createdAt, fail, failed, id, requestSpan, response, retryStrategy, succeed, succeeded, timeout, timeoutElapsed, timeoutRegistrationMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.couchbase.client.core.msg.Request
absoluteTimeout, cancel, cancel, cancellationReason, cancelled, completed, context, createdAt, fail, failed, id, operationId, requestSpan, response, retryStrategy, serviceTracingId, succeed, succeeded, target, timeout, timeoutElapsed, timeoutRegistration
-
Constructor Details
-
ViewRequest
public ViewRequest(Duration timeout, CoreContext ctx, RetryStrategy retryStrategy, Authenticator authenticator, String bucket, String design, String view, String query, Optional<byte[]> keysJson, boolean development, RequestSpan span)
-
-
Method Details
-
serviceType
Description copied from interface:RequestThe service type of this request.Callers that expect virtual services should use
Request.serviceTracingId()instead.- Specified by:
serviceTypein interfaceRequest<ViewResponse>
-
encode
public com.couchbase.client.core.deps.io.netty.handler.codec.http.FullHttpRequest encode() -
decode
public ViewResponse decode(ResponseStatus status, ViewChunkHeader header, reactor.core.publisher.Flux<ViewChunkRow> rows, reactor.core.publisher.Mono<ViewChunkTrailer> trailer) Description copied from interface:ChunkDecodableDecodes a chunked response into the response format.- Specified by:
decodein interfaceChunkDecodable<ViewChunkHeader,ViewChunkRow, ViewChunkTrailer, ViewResponse> - Parameters:
status- the http response status.header- the chunk header.rows- the chunk rows.trailer- the chunk trailer.- Returns:
- a decoded response including all the chunk parts.
-
bucket
Description copied from interface:RequestReturns the name of the bucket this request is scoped to, or null if not scoped to a bucket.- Specified by:
bucketin interfaceRequest<ViewResponse>- Returns:
- (nullable)
-
idempotent
public boolean idempotent()Description copied from interface:RequestReturns if the given request is idempotent or not.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!
- Specified by:
idempotentin interfaceRequest<ViewResponse>- Returns:
- true if idempotent.
-
serviceContext
Description copied from interface:RequestReturns contextual information for each individual service.- Specified by:
serviceContextin interfaceRequest<ViewResponse>- Overrides:
serviceContextin classBaseRequest<ViewResponse>- Returns:
- the service context.
-
name
Description copied from interface:RequestThe unique name of the request, usually related to the type but not necessarily.The default implementation is derived from the class name (i.e. FooRequest returns foo), but if that does not match up it should be overridden in the actual class.
- Specified by:
namein interfaceRequest<ViewResponse>- Returns:
- the name of the request type.
-