public class CarrierGlobalConfigRequest extends BaseKeyValueRequest<CarrierGlobalConfigResponse> implements TargetedRequest, UnmonitoredRequest
Note that this request is technicall the same as a CarrierBucketConfigRequest, but it makes it clear
that it is not tied to a bucket (and as a result does not accept one when being constructed).
| Constructor and Description |
|---|
CarrierGlobalConfigRequest(Duration timeout,
CoreContext ctx,
RetryStrategy retryStrategy,
NodeIdentifier target,
ConfigVersion ifNewerThan) |
| Modifier and Type | Method and Description |
|---|---|
CarrierGlobalConfigResponse |
decode(com.couchbase.client.core.deps.io.netty.buffer.ByteBuf response,
KeyValueChannelContext ctx)
Decode the encoded response into its message representation.
|
com.couchbase.client.core.deps.io.netty.buffer.ByteBuf |
encode(com.couchbase.client.core.deps.io.netty.buffer.ByteBufAllocator alloc,
int opaque,
KeyValueChannelContext ctx)
Encode this request with the given allocator and opaque.
|
boolean |
idempotent()
Returns if the given request is idempotent or not.
|
String |
name()
The unique name of the request, usually related to the type but not necessarily.
|
Map<String,Object> |
serviceContext()
Returns contextual information for each individual service.
|
NodeIdentifier |
target()
Returns the node that should service this request, or null to let the service locator decide.
|
String |
toString() |
bucket, collectionIdentifier, encodedExternalKeyWithCollection, encodedKeyWithCollection, errorCode, indicateRejectedWithNotMyVbucket, key, nextOpaque, opaque, operationId, partition, partition, rejectedWithNotMyVbucket, serviceTypeabsoluteTimeout, cancel, cancellationReason, cancelled, completed, context, createdAt, fail, failed, id, requestSpan, response, retryStrategy, succeed, succeeded, timeout, timeoutElapsed, timeoutRegistrationclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitabsoluteTimeout, cancel, cancel, cancellationReason, cancelled, completed, context, createdAt, fail, failed, id, requestSpan, response, retryStrategy, succeed, succeeded, timeout, timeoutElapsed, timeoutRegistrationpublic CarrierGlobalConfigRequest(Duration timeout, CoreContext ctx, RetryStrategy retryStrategy, NodeIdentifier target, @Nullable ConfigVersion ifNewerThan)
public NodeIdentifier target()
Requesttarget in interface Request<CarrierGlobalConfigResponse>public com.couchbase.client.core.deps.io.netty.buffer.ByteBuf encode(com.couchbase.client.core.deps.io.netty.buffer.ByteBufAllocator alloc,
int opaque,
KeyValueChannelContext ctx)
KeyValueRequestencode in interface KeyValueRequest<CarrierGlobalConfigResponse>alloc - the allocator where to grab the buffers from.opaque - the opaque value to use.ctx - more encode context.ByteBuf.public CarrierGlobalConfigResponse decode(com.couchbase.client.core.deps.io.netty.buffer.ByteBuf response, KeyValueChannelContext ctx)
KeyValueRequestdecode in interface KeyValueRequest<CarrierGlobalConfigResponse>response - the response to decode.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<CarrierGlobalConfigResponse>public Map<String,Object> serviceContext()
RequestserviceContext in interface Request<CarrierGlobalConfigResponse>serviceContext in class BaseKeyValueRequest<CarrierGlobalConfigResponse>public String name()
RequestThe 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.
name in interface Request<CarrierGlobalConfigResponse>Copyright © 2024 Couchbase, Inc.. All rights reserved.