Class CoreHttpRequest
- All Implemented Interfaces:
Encodable<com.couchbase.client.core.deps.io.netty.handler.codec.http.FullHttpRequest>
,NonChunkedHttpRequest<CoreHttpResponse>
,Request<CoreHttpResponse>
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
Builder for dynamic HTTP requests -
Method Summary
Modifier and TypeMethodDescriptionbucket()
Returns the name of the bucket this request is scoped to, or null if not scoped to a bucket.static CoreHttpRequest.Builder
builder
(CoreCommonOptions options, CoreContext coreContext, com.couchbase.client.core.deps.io.netty.handler.codec.http.HttpMethod method, CoreHttpPath path, RequestTarget target) boolean
If true, a non-2xx HTTP status code must be reported as anHttpStatusCodeException
.decode
(com.couchbase.client.core.deps.io.netty.handler.codec.http.FullHttpResponse response, HttpChannelContext channelContext) com.couchbase.client.core.deps.io.netty.handler.codec.http.FullHttpRequest
encode()
boolean
Returns 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.target()
Returns the node that should service this request, or null to let the service locator decide.toString()
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, timeoutRegistration
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface com.couchbase.client.core.msg.Request
absoluteTimeout, cancel, cancel, cancellationReason, cancelled, completed, context, createdAt, fail, failed, id, operationId, requestSpan, response, retryStrategy, succeed, succeeded, timeout, timeoutElapsed, timeoutRegistration
-
Method Details
-
builder
public static CoreHttpRequest.Builder builder(CoreCommonOptions options, CoreContext coreContext, com.couchbase.client.core.deps.io.netty.handler.codec.http.HttpMethod method, CoreHttpPath path, RequestTarget target) -
name
Description copied from interface:Request
The 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:
name
in interfaceRequest<CoreHttpResponse>
- Returns:
- the name of the request type.
-
exec
-
encode
public com.couchbase.client.core.deps.io.netty.handler.codec.http.FullHttpRequest encode() -
decode
public CoreHttpResponse decode(com.couchbase.client.core.deps.io.netty.handler.codec.http.FullHttpResponse response, HttpChannelContext channelContext) - Specified by:
decode
in interfaceNonChunkedHttpRequest<CoreHttpResponse>
-
serviceType
Description copied from interface:Request
The service type of this request.Can be null if this is a 'virtual service' (e.g. transactions), which don't map 1:1 to a particular cluster service, but need to integrate into various codepaths that are built around ServiceType such as ThresholdLoggingTracer. Virtual requests must not be sent into core at present, as there is limited support for them.
- Specified by:
serviceType
in interfaceRequest<CoreHttpResponse>
- Returns:
- the service type for this request.
-
idempotent
public boolean idempotent()Description copied from interface:Request
Returns 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:
idempotent
in interfaceRequest<CoreHttpResponse>
- Returns:
- true if idempotent.
-
target
Description copied from interface:Request
Returns the node that should service this request, or null to let the service locator decide.- Specified by:
target
in interfaceRequest<CoreHttpResponse>
- Returns:
- (nullable) node the request should be dispatched to, or null to let the service locator decide.
-
bucket
Description copied from interface:Request
Returns the name of the bucket this request is scoped to, or null if not scoped to a bucket.- Specified by:
bucket
in interfaceRequest<CoreHttpResponse>
- Returns:
- (nullable) name of the bucket this request is scoped to, or null if not scoped to a bucket.
-
serviceContext
Description copied from interface:Request
Returns contextual information for each individual service.- Specified by:
serviceContext
in interfaceRequest<CoreHttpResponse>
- Overrides:
serviceContext
in classBaseRequest<CoreHttpResponse>
- Returns:
- the service context.
-
toString
-
bypassExceptionTranslation
public boolean bypassExceptionTranslation()Description copied from interface:NonChunkedHttpRequest
If true, a non-2xx HTTP status code must be reported as anHttpStatusCodeException
. This lets users see the raw HTTP response when making their own HTTP requests with CouchbaseHttpClient.If false, the message handler may throw a domain-specific exception instead.
- Specified by:
bypassExceptionTranslation
in interfaceNonChunkedHttpRequest<CoreHttpResponse>
-