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.builders |
These builders provide a fluid API for creating instances of some immutable
(or mainly immutable classes) that have a large number of
constructor parameters.
|
com.basho.riak.client.cap |
Classes that are relevant in the face of eventually consistent, fault
tolerant databases (like Riak).
|
com.basho.riak.client.operations |
The interfaces/classes that model the set of operations for talking to Riak.
|
com.basho.riak.client.raw |
The raw interfaces/classes exist to provide unified access to any underlying transport clients for Riak
|
Modifier and Type | Method and Description |
---|---|
WriteBucket |
WriteBucket.dw(Quora dw)
The default dw quorom
|
WriteBucket |
WriteBucket.pr(Quora pr)
The default pr quorom
|
WriteBucket |
WriteBucket.pw(Quora pw)
The default pw quorom
|
WriteBucket |
WriteBucket.r(Quora r)
The default r Quorom for the bucket
|
WriteBucket |
WriteBucket.rw(Quora rw)
The default rw quorom
|
WriteBucket |
WriteBucket.w(Quora w)
The default w quorom
|
Modifier and Type | Method and Description |
---|---|
DomainBucketBuilder<T> |
DomainBucketBuilder.dw(Quora dw)
The durable write quorum for store operations on the built
DomainBucket |
BucketPropertiesBuilder |
BucketPropertiesBuilder.dw(Quora dw) |
DomainBucketBuilder<T> |
DomainBucketBuilder.pr(Quora pr) |
BucketPropertiesBuilder |
BucketPropertiesBuilder.pr(Quora pr) |
DomainBucketBuilder<T> |
DomainBucketBuilder.pw(Quora pw) |
BucketPropertiesBuilder |
BucketPropertiesBuilder.pw(Quora pw) |
DomainBucketBuilder<T> |
DomainBucketBuilder.r(Quora r)
The read quorum for fetch/store operations on the built
DomainBucket |
BucketPropertiesBuilder |
BucketPropertiesBuilder.r(Quora r) |
DomainBucketBuilder<T> |
DomainBucketBuilder.rw(Quora rw)
The read write quorum for delete operations on the built
DomainBucket |
BucketPropertiesBuilder |
BucketPropertiesBuilder.rw(Quora rw) |
DomainBucketBuilder<T> |
DomainBucketBuilder.w(Quora w)
The write quorum for store operations on the built
DomainBucket |
BucketPropertiesBuilder |
BucketPropertiesBuilder.w(Quora w) |
Modifier and Type | Method and Description |
---|---|
static Quora |
Quora.fromString(String name)
Attempt to return a
Quora for the given name |
Quora |
Quorum.getSymbolicValue()
Get the Symbolic value of this quorum.
|
static Quora |
Quora.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Quora[] |
Quora.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Constructor and Description |
---|
Quorum(Quora quorum)
Construct and instance that wraps a symbolic Quora
|
Modifier and Type | Method and Description |
---|---|
StoreObject<T> |
StoreObject.dw(Quora dw)
The durable write quorum for this store operation
|
DeleteObject |
DeleteObject.dw(Quora dw) |
CounterObject |
CounterObject.dw(Quora dw)
The durable write quorum for for an increment operation
|
StoreObject<T> |
StoreObject.pr(Quora pr)
The pr for the pre-store fetch
|
MultiFetchObject<T> |
MultiFetchObject.pr(Quora pr) |
FetchObject<T> |
FetchObject.pr(Quora pr) |
DeleteObject |
DeleteObject.pr(Quora pr) |
CounterObject |
CounterObject.pr(Quora pr)
The pr for a fetch operation
|
StoreObject<T> |
StoreObject.pw(Quora pw)
Set the primary write quorum for the store operation, takes precedence
over w.
|
DeleteObject |
DeleteObject.pw(Quora pw) |
CounterObject |
CounterObject.pw(Quora pw)
Set the primary write quorum for an increment operation, takes precedence
over w.
|
StoreObject<T> |
StoreObject.r(Quora r)
A store performs a fetch first (to get a vclock and resolve any conflicts), set the read quorum for the fetch
|
MultiFetchObject<T> |
MultiFetchObject.r(Quora r)
The read quorum for this fetch operation
|
FetchObject<T> |
FetchObject.r(Quora r)
The read quorum for this fetch operation
|
DeleteObject |
DeleteObject.r(Quora r) |
CounterObject |
CounterObject.r(Quora r)
Set the read quorum for a fetch operation
|
DeleteObject |
DeleteObject.rw(Quora rw)
The read_write quorum for the delete operation
|
StoreObject<T> |
StoreObject.w(Quora w)
Set the write quorum for the store operation
|
DeleteObject |
DeleteObject.w(Quora w) |
CounterObject |
CounterObject.w(Quora w)
Set the write quorum for an increment operation
|
Modifier and Type | Method and Description |
---|---|
StoreMeta.Builder |
StoreMeta.Builder.dw(Quora dw) |
DeleteMeta.Builder |
DeleteMeta.Builder.dw(Quora dw) |
FetchMeta.Builder |
FetchMeta.Builder.pr(Quora pr) |
DeleteMeta.Builder |
DeleteMeta.Builder.pr(Quora pr) |
StoreMeta.Builder |
StoreMeta.Builder.pw(Quora pw) |
DeleteMeta.Builder |
DeleteMeta.Builder.pw(Quora pw) |
FetchMeta.Builder |
FetchMeta.Builder.r(Quora r) |
DeleteMeta.Builder |
DeleteMeta.Builder.r(Quora r) |
DeleteMeta.Builder |
DeleteMeta.Builder.rw(Quora rw) |
StoreMeta.Builder |
StoreMeta.Builder.w(Quora w) |
DeleteMeta.Builder |
DeleteMeta.Builder.w(Quora w) |
Copyright © 2014. All Rights Reserved.