Package com.couchbase.client.core.msg.kv
Class SubdocMutateRequest
- java.lang.Object
-
- com.couchbase.client.core.msg.BaseRequest<R>
-
- com.couchbase.client.core.msg.kv.BaseKeyValueRequest<SubdocMutateResponse>
-
- com.couchbase.client.core.msg.kv.SubdocMutateRequest
-
- All Implemented Interfaces:
KeyValueRequest<SubdocMutateResponse>
,Request<SubdocMutateResponse>
,ScopedRequest
public class SubdocMutateRequest extends BaseKeyValueRequest<SubdocMutateResponse>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SubdocMutateRequest.Command
-
Field Summary
Fields Modifier and Type Field Description static int
SUBDOC_MAX_FIELDS
-
Constructor Summary
Constructors Constructor Description SubdocMutateRequest(Duration timeout, CoreContext ctx, CollectionIdentifier collectionIdentifier, RetryStrategy retryStrategy, String key, boolean insertDocument, boolean upsertDocument, List<SubdocMutateRequest.Command> commands, long expiration, long cas, Optional<DurabilityLevel> syncReplicationType)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description SubdocMutateResponse
decode(com.couchbase.client.core.deps.io.netty.buffer.ByteBuf response, ChannelContext 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, ChannelContext ctx)
Encode this request with the given allocator and opaque.static RuntimeException
errIfNoCommands()
static RuntimeException
errIfTooManyCommands()
-
Methods inherited from class com.couchbase.client.core.msg.kv.BaseKeyValueRequest
bucket, collectionIdentifier, encodedKeyWithCollection, key, partition, partition, serviceContext, serviceType
-
Methods inherited from class com.couchbase.client.core.msg.BaseRequest
cancel, cancellationReason, cancelled, completed, context, fail, failed, id, response, retryStrategy, succeed, succeeded, timeout
-
-
-
-
Field Detail
-
SUBDOC_MAX_FIELDS
public static final int SUBDOC_MAX_FIELDS
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
SubdocMutateRequest
public SubdocMutateRequest(Duration timeout, CoreContext ctx, CollectionIdentifier collectionIdentifier, RetryStrategy retryStrategy, String key, boolean insertDocument, boolean upsertDocument, List<SubdocMutateRequest.Command> commands, long expiration, long cas, Optional<DurabilityLevel> syncReplicationType)
-
-
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, ChannelContext ctx)
Description copied from interface:KeyValueRequest
Encode 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 SubdocMutateResponse decode(com.couchbase.client.core.deps.io.netty.buffer.ByteBuf response, ChannelContext ctx)
Description copied from interface:KeyValueRequest
Decode the encoded response into its message representation.- Parameters:
response
- the response to decode.- Returns:
- the decoded response as the generic type R.
-
errIfNoCommands
public static RuntimeException errIfNoCommands()
-
errIfTooManyCommands
public static RuntimeException errIfTooManyCommands()
-
-