Uses of Class
com.couchbase.client.core.msg.kv.DurabilityLevel
-
Packages that use DurabilityLevel Package Description com.couchbase.client.core.io.netty.kv com.couchbase.client.core.msg.kv -
-
Uses of DurabilityLevel in com.couchbase.client.core.io.netty.kv
Methods in com.couchbase.client.core.io.netty.kv with parameters of type DurabilityLevel Modifier and Type Method Description static com.couchbase.client.core.deps.io.netty.buffer.ByteBuf
MemcacheProtocol. flexibleSyncReplication(com.couchbase.client.core.deps.io.netty.buffer.ByteBufAllocator alloc, DurabilityLevel type, Duration timeout, CoreContext ctx)
Helper method to create the flexible extras for sync replication. -
Uses of DurabilityLevel in com.couchbase.client.core.msg.kv
Methods in com.couchbase.client.core.msg.kv that return DurabilityLevel Modifier and Type Method Description static DurabilityLevel
DurabilityLevel. valueOf(String name)
Returns the enum constant of this type with the specified name.static DurabilityLevel[]
DurabilityLevel. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.couchbase.client.core.msg.kv that return types with arguments of type DurabilityLevel Modifier and Type Method Description Optional<DurabilityLevel>
AppendRequest. durabilityLevel()
Optional<DurabilityLevel>
DecrementRequest. durabilityLevel()
Optional<DurabilityLevel>
IncrementRequest. durabilityLevel()
Optional<DurabilityLevel>
InsertRequest. durabilityLevel()
Optional<DurabilityLevel>
PrependRequest. durabilityLevel()
Optional<DurabilityLevel>
RemoveRequest. durabilityLevel()
Optional<DurabilityLevel>
ReplaceRequest. durabilityLevel()
Optional<DurabilityLevel>
SubdocMutateRequest. durabilityLevel()
Optional<DurabilityLevel>
SyncDurabilityRequest. durabilityLevel()
Returns the durability level if present.Optional<DurabilityLevel>
UpsertRequest. durabilityLevel()
Constructor parameters in com.couchbase.client.core.msg.kv with type arguments of type DurabilityLevel Constructor Description AppendRequest(Duration timeout, CoreContext ctx, CollectionIdentifier collectionIdentifier, RetryStrategy retryStrategy, String key, byte[] content, long cas, Optional<DurabilityLevel> syncReplicationType, InternalSpan span)
InsertRequest(String key, byte[] content, long expiration, int flags, Duration timeout, CoreContext ctx, CollectionIdentifier collectionIdentifier, RetryStrategy retryStrategy, Optional<DurabilityLevel> syncReplicationType, InternalSpan span)
PrependRequest(Duration timeout, CoreContext ctx, CollectionIdentifier collectionIdentifier, RetryStrategy retryStrategy, String key, byte[] content, long cas, Optional<DurabilityLevel> syncReplicationType, InternalSpan span)
RemoveRequest(String key, long cas, Duration timeout, CoreContext ctx, CollectionIdentifier collectionIdentifier, RetryStrategy retryStrategy, Optional<DurabilityLevel> syncReplicationType, InternalSpan span)
ReplaceRequest(String key, byte[] content, long expiration, int flags, Duration timeout, long cas, CoreContext ctx, CollectionIdentifier collectionIdentifier, RetryStrategy retryStrategy, Optional<DurabilityLevel> syncReplicationType, InternalSpan span)
SubdocMutateRequest(Duration timeout, CoreContext ctx, CollectionIdentifier collectionIdentifier, BucketConfig bucketConfig, RetryStrategy retryStrategy, String key, boolean insertDocument, boolean upsertDocument, boolean accessDeleted, boolean createAsDeleted, List<SubdocMutateRequest.Command> commands, long expiration, long cas, Optional<DurabilityLevel> syncReplicationType, InternalSpan span)
UpsertRequest(String key, byte[] content, long expiration, int flags, Duration timeout, CoreContext ctx, CollectionIdentifier collectionIdentifier, RetryStrategy retryStrategy, Optional<DurabilityLevel> syncReplicationType, InternalSpan span)
-