Package | Description |
---|---|
com.basho.riak.client.bucket |
A bucket is a namespace abstraction provided by Riak, the API uses
Bucket as the primary way to interact
with data stored in Riak. |
com.basho.riak.client.operations |
The interfaces/classes that model the set of operations for talking to Riak.
|
Modifier and Type | Method and Description |
---|---|
DeleteObject |
DefaultBucket.delete(String key) |
DeleteObject |
Bucket.delete(String key)
|
<T> DeleteObject |
DefaultBucket.delete(T o) |
<T> DeleteObject |
Bucket.delete(T o)
Creates a
DeleteObject operation that will delete the data at
o 's RiakKey annotated field value on
execute() . |
Modifier and Type | Method and Description |
---|---|
DeleteObject |
DeleteObject.dw(int dw) |
DeleteObject |
DeleteObject.dw(Quora dw) |
DeleteObject |
DeleteObject.dw(Quorum dw) |
DeleteObject |
DeleteObject.fetchBeforeDelete(boolean fetch)
If you want to provide a vclock to delete, but don't have one, setting
this true will have the operation first perform a fetch (using the
supplied r/pr parameters).
|
DeleteObject |
DeleteObject.pr(int pr) |
DeleteObject |
DeleteObject.pr(Quora pr) |
DeleteObject |
DeleteObject.pr(Quorum pr) |
DeleteObject |
DeleteObject.pw(int pw) |
DeleteObject |
DeleteObject.pw(Quora pw) |
DeleteObject |
DeleteObject.pw(Quorum pw) |
DeleteObject |
DeleteObject.r(int r) |
DeleteObject |
DeleteObject.r(Quora r) |
DeleteObject |
DeleteObject.r(Quorum r) |
DeleteObject |
DeleteObject.rw(int rw)
The read_write quorum for the delete operation
|
DeleteObject |
DeleteObject.rw(Quora rw)
The read_write quorum for the delete operation
|
DeleteObject |
DeleteObject.rw(Quorum rw)
The read_write quorum for the delete operation
|
DeleteObject |
DeleteObject.timeout(int timeout)
Set an operation timeout in milliseconds to be sent to Riak
As of 1.4 Riak allows a timeout to be sent for get, put, and delete operations.
|
DeleteObject |
DeleteObject.vclock(VClock vclock)
Provide a vclock to riak for the delete operation.
|
DeleteObject |
DeleteObject.w(int w) |
DeleteObject |
DeleteObject.w(Quora w) |
DeleteObject |
DeleteObject.w(Quorum w) |
DeleteObject |
DeleteObject.withRetrier(Retrier retrier)
Set
Retrier to use when executing this delete operation |
Copyright © 2014. All Rights Reserved.