Package | Description |
---|---|
com.basho.riak.client.plain |
Deprecated please see com.basho.riak.http.client.plain
|
Modifier and Type | Method and Description |
---|---|
void |
PlainClient.delete(String bucket,
String key)
Deprecated.
|
void |
PlainClient.delete(String bucket,
String key,
RequestMeta meta)
Deprecated.
Like
RiakClient.delete(String, String, RequestMeta) , except
throws on a non-200 or 404 response. |
RiakObject |
PlainClient.fetch(String bucket,
String key)
Deprecated.
|
RiakObject |
PlainClient.fetch(String bucket,
String key,
RequestMeta meta)
Deprecated.
Like
RiakClient.fetch(String, String, RequestMeta) , except it
returns the fetched object directly or throws if the response is not a
200, 304 or 404. |
Collection<? extends RiakObject> |
PlainClient.fetchAll(String bucket,
String key)
Deprecated.
|
Collection<? extends RiakObject> |
PlainClient.fetchAll(String bucket,
String key,
RequestMeta meta)
Deprecated.
Like
RiakClient.fetch(String, String, RequestMeta) , except it
returns the all the fetched objects directly or throws if the response is
not a 200, 304 or 404. |
RiakObject |
PlainClient.fetchMeta(String bucket,
String key)
Deprecated.
|
RiakObject |
PlainClient.fetchMeta(String bucket,
String key,
RequestMeta meta)
Deprecated.
Like
RiakClient.fetchMeta(String, String, RequestMeta) , except it
returns the fetched object metadata directly or throws if the response is
not a 200, 304 or 404. |
RiakBucketInfo |
PlainClient.listBucket(String bucket)
Deprecated.
|
RiakBucketInfo |
PlainClient.listBucket(String bucket,
RequestMeta meta)
Deprecated.
Like
RiakClient.listBucket(String, RequestMeta) , except throws on
a non-200 response |
void |
PlainClient.setBucketSchema(String bucket,
RiakBucketInfo bucketInfo)
Deprecated.
|
void |
PlainClient.setBucketSchema(String bucket,
RiakBucketInfo bucketInfo,
RequestMeta meta)
Deprecated.
Like
RiakClient.setBucketSchema(String, RiakBucketInfo, RequestMeta) ,
except throws on a non-204 response. |
void |
PlainClient.store(RiakObject object)
Deprecated.
|
void |
PlainClient.store(RiakObject object,
RequestMeta meta)
Deprecated.
Like
RiakClient.store(RiakObject, RequestMeta) , except throws on
a non-200 or 204 response and updates the passed in RiakObject
with new metadata from Riak. |
List<? extends List<? extends RiakObject>> |
PlainClient.walk(String bucket,
String key,
RiakWalkSpec walkSpec)
Deprecated.
|
List<? extends List<? extends RiakObject>> |
PlainClient.walk(String bucket,
String key,
String walkSpec)
Deprecated.
|
List<? extends List<? extends RiakObject>> |
PlainClient.walk(String bucket,
String key,
String walkSpec,
RequestMeta meta)
Deprecated.
Like
RiakClient.walk(String, String, String, RequestMeta) , except
throws on a non-200 or 404 response. |
Copyright © 2014. All Rights Reserved.