Package com.couchbase.client.core.msg.kv
Class ObserveViaCasRequest
java.lang.Object
com.couchbase.client.core.msg.BaseRequest<ObserveViaCasResponse>
com.couchbase.client.core.msg.kv.BaseKeyValueRequest<ObserveViaCasResponse>
com.couchbase.client.core.msg.kv.ObserveViaCasRequest
- All Implemented Interfaces:
KeyValueRequest<ObserveViaCasResponse>,Request<ObserveViaCasResponse>,ScopedRequest
-
Constructor Summary
ConstructorsConstructorDescriptionObserveViaCasRequest(Duration timeout, CoreContext ctx, CollectionIdentifier collectionIdentifier, RetryStrategy retryStrategy, String key, boolean active, int replica) -
Method Summary
Modifier and TypeMethodDescriptionbooleanactive()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.ByteBufencode(com.couchbase.client.core.deps.io.netty.buffer.ByteBufAllocator alloc, int opaque, KeyValueChannelContext ctx) Encode this request with the given allocator and opaque.booleanReturns if the given request is idempotent or not.name()The unique name of the request, usually related to the type but not necessarily.intreplica()Returns the index of the replica set member this request targets.Methods inherited from class com.couchbase.client.core.msg.kv.BaseKeyValueRequest
bucket, collectionIdentifier, encodedExternalKeyWithCollection, encodedKeyWithCollection, errorCode, indicateRejectedWithNotMyVbucket, key, nextOpaque, opaque, operationId, partition, partition, rejectedWithNotMyVbucket, serviceContext, serviceTypeMethods 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, requestSpan, response, retryStrategy, serviceTracingId, succeed, succeeded, target, timeout, timeoutElapsed, timeoutRegistration
-
Constructor Details
-
ObserveViaCasRequest
public ObserveViaCasRequest(Duration timeout, CoreContext ctx, CollectionIdentifier collectionIdentifier, RetryStrategy retryStrategy, String key, boolean active, int replica)
-
-
Method Details
-
replica
public int replica()Description copied from interface:KeyValueRequestReturns the index of the replica set member this request targets.- 0 = primary ("active")
- 1 = first replica
- 2 = second replica
- 3 = third replica
-
active
public boolean active() -
encode
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) Description copied from interface:KeyValueRequestEncode this request with the given allocator and opaque.- Parameters:
alloc- the allocator where to grab the buffers from.opaque- the opaque value to use.ctx- more encode context.- Returns:
- the encoded request as a
ByteBuf.
-
decode
public ObserveViaCasResponse decode(com.couchbase.client.core.deps.io.netty.buffer.ByteBuf response, KeyValueChannelContext ctx) Description copied from interface:KeyValueRequestDecode the encoded response into its message representation.- Parameters:
response- the response to decode.- Returns:
- the decoded response as the generic type R.
-
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!
- Returns:
- true if idempotent.
-
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.
- Returns:
- the name of the request type.
-