CoreAsyncResponse<CoreMutationResult> |
ClassicCoreKvBinaryOps.appendAsync(String id,
byte[] content,
CoreCommonOptions options,
long cas,
CoreDurability durability)
Appends binary content to the document with custom options.
|
CoreAsyncResponse<CoreCounterResult> |
ClassicCoreKvBinaryOps.decrementAsync(String id,
CoreCommonOptions options,
CoreExpiry expiry,
long delta,
Optional<Long> initial,
CoreDurability durability)
Decrements the counter document by one or the number defined in the options.
|
CoreAsyncResponse<CoreExistsResult> |
ClassicCoreKvOps.existsAsync(CoreCommonOptions common,
String key) |
CoreAsyncResponse<CoreGetResult> |
ClassicCoreKvOps.getAndLockAsync(CoreCommonOptions common,
String key,
Duration lockTime) |
CoreAsyncResponse<CoreGetResult> |
ClassicCoreKvOps.getAndTouchAsync(CoreCommonOptions common,
String key,
CoreExpiry expiry) |
CoreAsyncResponse<CoreGetResult> |
ClassicCoreKvOps.getAsync(CoreCommonOptions common,
String key,
List<String> projections,
boolean withExpiry) |
CoreAsyncResponse<CoreCounterResult> |
ClassicCoreKvBinaryOps.incrementAsync(String id,
CoreCommonOptions options,
CoreExpiry expiry,
long delta,
Optional<Long> initial,
CoreDurability durability)
Increments the counter document by one or the number defined in the options.
|
CoreAsyncResponse<CoreMutationResult> |
ClassicCoreKvOps.insertAsync(CoreCommonOptions common,
String key,
Supplier<CoreEncodedContent> content,
CoreDurability durability,
CoreExpiry expiry) |
CoreAsyncResponse<CoreMutationResult> |
ClassicCoreKvBinaryOps.prependAsync(String id,
byte[] content,
CoreCommonOptions options,
long cas,
CoreDurability durability)
Prepends binary content to the document with custom options.
|
CoreAsyncResponse<CoreMutationResult> |
ClassicCoreKvOps.removeAsync(CoreCommonOptions common,
String key,
long cas,
CoreDurability durability) |
CoreAsyncResponse<CoreMutationResult> |
ClassicCoreKvOps.replaceAsync(CoreCommonOptions common,
String key,
Supplier<CoreEncodedContent> content,
long cas,
CoreDurability durability,
CoreExpiry expiry,
boolean preserveExpiry) |
CoreAsyncResponse<CoreSubdocGetResult> |
ClassicCoreKvOps.subdocGetAsync(CoreCommonOptions common,
String key,
List<CoreSubdocGetCommand> commands,
boolean accessDeleted) |
CoreAsyncResponse<CoreSubdocMutateResult> |
ClassicCoreKvOps.subdocMutateAsync(CoreCommonOptions common,
String key,
Supplier<List<CoreSubdocMutateCommand>> commands,
CoreStoreSemantics storeSemantics,
long cas,
CoreDurability durability,
CoreExpiry expiry,
boolean preserveExpiry,
boolean accessDeleted,
boolean createAsDeleted) |
CoreAsyncResponse<CoreMutationResult> |
ClassicCoreKvOps.touchAsync(CoreCommonOptions common,
String key,
CoreExpiry expiry) |
CoreAsyncResponse<Void> |
ClassicCoreKvOps.unlockAsync(CoreCommonOptions common,
String key,
long cas) |
CoreAsyncResponse<CoreMutationResult> |
ClassicCoreKvOps.upsertAsync(CoreCommonOptions common,
String key,
Supplier<CoreEncodedContent> content,
CoreDurability durability,
CoreExpiry expiry,
boolean preserveExpiry) |