Uses of Interface
io.oxia.client.api.options.DeleteOption
Packages that use DeleteOption
Package
Description
The public API for interacting with Oxia.
The definitions for options that can be passed to the Oxia client operations.
-
Uses of DeleteOption in io.oxia.client.api
Method parameters in io.oxia.client.api with type arguments of type DeleteOptionModifier and TypeMethodDescriptionAsyncOxiaClient.delete(String key, Set<DeleteOption> options) Conditionally deletes the record associated with the key if the record exists, and the server's versionId of the record is as specified, at the instant when the delete is applied.booleanSyncOxiaClient.delete(String key, Set<DeleteOption> options) Conditionally deletes the record associated with the key if the record exists, and the server's versionId of the record is as specified, at the instant when the delete is applied. -
Uses of DeleteOption in io.oxia.client.api.options
Methods in io.oxia.client.api.options that return DeleteOptionModifier and TypeMethodDescriptionstatic DeleteOptionDeleteOption.IfVersionIdEquals(long versionId) Conditional delete will only succeed if the record's version matches the supplied versionId.static DeleteOptionDeleteOption.PartitionKey(String partitionKey) PartitionKey overrides the partition routing with the specified `partitionKey` instead of the regular record key.