Package | Description |
---|---|
net.spy.memcached |
Memcached client and transformation utils
|
net.spy.memcached.ops |
Fundamental protocol operation interfaces
|
Modifier and Type | Method and Description |
---|---|
<T> CASResponse |
MemcachedClient.cas(java.lang.String key,
long casId,
int exp,
T value,
Transcoder<T> tc)
Perform a synchronous CAS operation.
|
<T> CASResponse |
MemcachedClientIF.cas(java.lang.String key,
long casId,
int exp,
T value,
Transcoder<T> tc) |
CASResponse |
MemcachedClient.cas(java.lang.String key,
long casId,
java.lang.Object value)
Perform a synchronous CAS operation with the default transcoder.
|
CASResponse |
MemcachedClientIF.cas(java.lang.String key,
long casId,
java.lang.Object value) |
<T> CASResponse |
MemcachedClient.cas(java.lang.String key,
long casId,
T value,
Transcoder<T> tc)
Perform a synchronous CAS operation.
|
static CASResponse |
CASResponse.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CASResponse[] |
CASResponse.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
<T> OperationFuture<CASResponse> |
MemcachedClient.asyncCAS(java.lang.String key,
long casId,
int exp,
T value,
Transcoder<T> tc)
Asynchronous CAS operation.
|
OperationFuture<CASResponse> |
MemcachedClient.asyncCAS(java.lang.String key,
long casId,
java.lang.Object value)
Asynchronous CAS operation using the default transcoder.
|
java.util.concurrent.Future<CASResponse> |
MemcachedClientIF.asyncCAS(java.lang.String key,
long casId,
java.lang.Object value) |
<T> OperationFuture<CASResponse> |
MemcachedClient.asyncCAS(java.lang.String key,
long casId,
T value,
Transcoder<T> tc)
Asynchronous CAS operation.
|
<T> java.util.concurrent.Future<CASResponse> |
MemcachedClientIF.asyncCAS(java.lang.String key,
long casId,
T value,
Transcoder<T> tc) |
Modifier and Type | Method and Description |
---|---|
CASResponse |
CASOperationStatus.getCASResponse()
Get the CAS response indicated here.
|
Constructor and Description |
---|
CASOperationStatus(boolean success,
java.lang.String msg,
CASResponse cres) |
Copyright © 2006-2009 Dustin Sallings, 2009-2013 Couchbase, Inc.