Package | Description |
---|---|
net.spy.memcached |
Memcached client and transformation utils
|
net.spy.memcached.ops |
Fundamental protocol operation interfaces
|
Modifier and Type | Method and Description |
---|---|
CASResponse |
MemcachedClient.cas(String key,
long casId,
int exp,
Object value)
Perform a synchronous CAS operation with the default transcoder.
|
CASResponse |
MemcachedClientIF.cas(String key,
long casId,
int exp,
Object value) |
<T> CASResponse |
MemcachedClient.cas(String key,
long casId,
int exp,
T value,
Transcoder<T> tc)
Perform a synchronous CAS operation.
|
<T> CASResponse |
MemcachedClientIF.cas(String key,
long casId,
int exp,
T value,
Transcoder<T> tc) |
CASResponse |
MemcachedClient.cas(String key,
long casId,
Object value)
Perform a synchronous CAS operation with the default transcoder.
|
CASResponse |
MemcachedClientIF.cas(String key,
long casId,
Object value) |
<T> CASResponse |
MemcachedClient.cas(String key,
long casId,
T value,
Transcoder<T> tc)
Perform a synchronous CAS operation.
|
<T> CASResponse |
MemcachedClientIF.cas(String key,
long casId,
T value,
Transcoder<T> tc) |
static CASResponse |
CASResponse.valueOf(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 |
---|---|
OperationFuture<CASResponse> |
MemcachedClient.asyncCAS(String key,
long casId,
int exp,
Object value)
Asynchronous CAS operation using the default transcoder with expiration.
|
Future<CASResponse> |
MemcachedClientIF.asyncCAS(String key,
long casId,
int exp,
Object value) |
<T> OperationFuture<CASResponse> |
MemcachedClient.asyncCAS(String key,
long casId,
int exp,
T value,
Transcoder<T> tc)
Asynchronous CAS operation.
|
<T> OperationFuture<CASResponse> |
MemcachedClientIF.asyncCAS(String key,
long casId,
int exp,
T value,
Transcoder<T> tc) |
OperationFuture<CASResponse> |
MemcachedClient.asyncCAS(String key,
long casId,
Object value)
Asynchronous CAS operation using the default transcoder.
|
Future<CASResponse> |
MemcachedClientIF.asyncCAS(String key,
long casId,
Object value) |
<T> OperationFuture<CASResponse> |
MemcachedClient.asyncCAS(String key,
long casId,
T value,
Transcoder<T> tc)
Asynchronous CAS operation.
|
<T> Future<CASResponse> |
MemcachedClientIF.asyncCAS(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,
String msg,
CASResponse cres,
StatusCode code) |
Copyright © 2021. All rights reserved.