Uses of Class
net.spy.memcached.CASResponse

Packages that use CASResponse
net.spy.memcached Memcached client and transformation utils 
net.spy.memcached.ops Fundamental protocol operation interfaces 
 

Uses of CASResponse in net.spy.memcached
 

Methods in net.spy.memcached that return CASResponse
<T> CASResponse
MemcachedClient.cas(String key, long casId, int exp, T value, Transcoder<T> tc)
          Perform a synchronous CAS operation.
 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.
 

Methods in net.spy.memcached that return types with arguments of type CASResponse
<T> Future<CASResponse>
MemcachedClient.asyncCAS(String key, long casId, int exp, T value, Transcoder<T> tc)
          Asynchronous CAS operation.
 Future<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> Future<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)
           
 

Uses of CASResponse in net.spy.memcached.ops
 

Methods in net.spy.memcached.ops that return CASResponse
 CASResponse CASOperationStatus.getCASResponse()
          Get the CAS response indicated here.
 

Constructors in net.spy.memcached.ops with parameters of type CASResponse
CASOperationStatus(boolean success, String msg, CASResponse cres)