Class CoreHttpRequest
- java.lang.Object
-
- com.couchbase.client.core.msg.BaseRequest<CoreHttpResponse>
-
- com.couchbase.client.core.endpoint.http.CoreHttpRequest
-
- All Implemented Interfaces:
Encodable<com.couchbase.client.core.deps.io.netty.handler.codec.http.FullHttpRequest>,NonChunkedHttpRequest<CoreHttpResponse>,Request<CoreHttpResponse>
@Internal public class CoreHttpRequest extends BaseRequest<CoreHttpResponse> implements NonChunkedHttpRequest<CoreHttpResponse>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCoreHttpRequest.BuilderBuilder for dynamic HTTP requests
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringbucket()Returns the name of the bucket this request is scoped to, or null if not scoped to a bucket.static CoreHttpRequest.Builderbuilder(CoreCommonOptions options, CoreContext coreContext, com.couchbase.client.core.deps.io.netty.handler.codec.http.HttpMethod method, CoreHttpPath path, RequestTarget target)CoreHttpResponsedecode(com.couchbase.client.core.deps.io.netty.handler.codec.http.FullHttpResponse response, HttpChannelContext channelContext)com.couchbase.client.core.deps.io.netty.handler.codec.http.FullHttpRequestencode()CompletableFuture<CoreHttpResponse>exec(Core core)booleanidempotent()Returns if the given request is idempotent or not.Map<String,Object>serviceContext()Returns contextual information for each individual service.ServiceTypeserviceType()The service type of this request.NodeIdentifiertarget()Returns the node that should service this request, or null to let the service locator decide.StringtoString()-
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
-
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, cancellationReason, cancelled, completed, context, createdAt, fail, failed, id, name, operationId, requestSpan, response, retryStrategy, succeed, succeeded, timeout, timeoutElapsed
-
-
-
-
Method Detail
-
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)
-
exec
public CompletableFuture<CoreHttpResponse> exec(Core core)
-
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:
decodein interfaceNonChunkedHttpRequest<CoreHttpResponse>
-
serviceType
public ServiceType serviceType()
Description copied from interface:RequestThe service type of this request.- Specified by:
serviceTypein interfaceRequest<CoreHttpResponse>- Returns:
- the service type for this request.
-
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<CoreHttpResponse>- Returns:
- true if idempotent.
-
target
public NodeIdentifier target()
Description copied from interface:RequestReturns the node that should service this request, or null to let the service locator decide.- Specified by:
targetin interfaceRequest<CoreHttpResponse>- Returns:
- (nullable) node the request should be dispatched to, or null to let the service locator decide.
-
bucket
public String 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<CoreHttpResponse>- Returns:
- (nullable) name of the bucket this request is scoped to, or null if not scoped to a bucket.
-
serviceContext
public Map<String,Object> serviceContext()
Description copied from interface:RequestReturns contextual information for each individual service.- Specified by:
serviceContextin interfaceRequest<CoreHttpResponse>- Overrides:
serviceContextin classBaseRequest<CoreHttpResponse>- Returns:
- the service context.
-
-