Package com.couchbase.client.core.msg.kv
Class IncrementRequest
- java.lang.Object
-
- com.couchbase.client.core.msg.BaseRequest<R>
-
- com.couchbase.client.core.msg.kv.BaseKeyValueRequest<IncrementResponse>
-
- com.couchbase.client.core.msg.kv.IncrementRequest
-
- All Implemented Interfaces:
KeyValueRequest<IncrementResponse>,SyncDurabilityRequest,Request<IncrementResponse>,ScopedRequest
public class IncrementRequest extends BaseKeyValueRequest<IncrementResponse> implements SyncDurabilityRequest
-
-
Field Summary
Fields Modifier and Type Field Description static intCOUNTER_NOT_EXISTS_EXPIRY
-
Constructor Summary
Constructors Constructor Description IncrementRequest(Duration timeout, CoreContext ctx, CollectionIdentifier collectionIdentifier, RetryStrategy retryStrategy, String key, long delta, Optional<Long> initial, long expiration, Optional<DurabilityLevel> syncReplicationType, RequestSpan span)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IncrementResponsedecode(com.couchbase.client.core.deps.io.netty.buffer.ByteBuf response, KeyValueChannelContext ctx)Decode the encoded response into its message representation.Optional<DurabilityLevel>durabilityLevel()Returns the durability level if present.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.Stringname()The unique name of the request, usually related to the type but not necessarily.-
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, serviceType
-
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, toString, wait, wait, wait
-
Methods inherited from interface com.couchbase.client.core.msg.Request
absoluteTimeout, cancel, cancel, cancellationReason, cancelled, completed, context, createdAt, fail, failed, id, idempotent, requestSpan, response, retryStrategy, succeed, succeeded, target, timeout, timeoutElapsed, timeoutRegistration
-
Methods inherited from interface com.couchbase.client.core.msg.kv.SyncDurabilityRequest
applyLevelOnSpan
-
-
-
-
Field Detail
-
COUNTER_NOT_EXISTS_EXPIRY
public static final int COUNTER_NOT_EXISTS_EXPIRY
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
IncrementRequest
public IncrementRequest(Duration timeout, CoreContext ctx, CollectionIdentifier collectionIdentifier, RetryStrategy retryStrategy, String key, long delta, Optional<Long> initial, long expiration, Optional<DurabilityLevel> syncReplicationType, RequestSpan span)
-
-
Method Detail
-
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.- Specified by:
encodein interfaceKeyValueRequest<IncrementResponse>- 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 IncrementResponse 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.- Specified by:
decodein interfaceKeyValueRequest<IncrementResponse>- Parameters:
response- the response to decode.- Returns:
- the decoded response as the generic type R.
-
durabilityLevel
public Optional<DurabilityLevel> durabilityLevel()
Description copied from interface:SyncDurabilityRequestReturns the durability level if present.- Specified by:
durabilityLevelin interfaceSyncDurabilityRequest
-
name
public String 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<IncrementResponse>- Returns:
- the name of the request type.
-
-