Uses of Class
net.spy.memcached.CASResponse
-
Packages that use CASResponse Package Description net.spy.memcached Memcached client and transformation utilsnet.spy.memcached.ops Fundamental protocol operation interfaces -
-
Uses of CASResponse in net.spy.memcached
Methods in net.spy.memcached that return CASResponse Modifier and Type Method Description CASResponseMemcachedClient. cas(java.lang.String key, long casId, int exp, java.lang.Object value)Perform a synchronous CAS operation with the default transcoder.<T> CASResponseMemcachedClient. cas(java.lang.String key, long casId, int exp, T value, Transcoder<T> tc)Perform a synchronous CAS operation.CASResponseMemcachedClient. cas(java.lang.String key, long casId, java.lang.Object value)Perform a synchronous CAS operation with the default transcoder.<T> CASResponseMemcachedClient. cas(java.lang.String key, long casId, T value, Transcoder<T> tc)Perform a synchronous CAS operation.CASResponseMemcachedClientIF. cas(java.lang.String key, long casId, int exp, java.lang.Object value)<T> CASResponseMemcachedClientIF. cas(java.lang.String key, long casId, int exp, T value, Transcoder<T> tc)CASResponseMemcachedClientIF. cas(java.lang.String key, long casId, java.lang.Object value)<T> CASResponseMemcachedClientIF. cas(java.lang.String key, long casId, T value, Transcoder<T> tc)static CASResponseCASResponse. 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.Methods in net.spy.memcached that return types with arguments of type CASResponse Modifier and Type Method Description OperationFuture<CASResponse>MemcachedClient. asyncCAS(java.lang.String key, long casId, int exp, java.lang.Object value)Asynchronous CAS operation using the default transcoder with expiration.<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.<T> OperationFuture<CASResponse>MemcachedClient. asyncCAS(java.lang.String key, long casId, T value, Transcoder<T> tc)Asynchronous CAS operation.java.util.concurrent.Future<CASResponse>MemcachedClientIF. asyncCAS(java.lang.String key, long casId, int exp, java.lang.Object value)<T> OperationFuture<CASResponse>MemcachedClientIF. asyncCAS(java.lang.String key, long casId, int exp, T value, Transcoder<T> tc)java.util.concurrent.Future<CASResponse>MemcachedClientIF. asyncCAS(java.lang.String key, long casId, java.lang.Object value)<T> java.util.concurrent.Future<CASResponse>MemcachedClientIF. asyncCAS(java.lang.String key, long casId, T value, Transcoder<T> tc) -
Uses of CASResponse in net.spy.memcached.ops
Fields in net.spy.memcached.ops declared as CASResponse Modifier and Type Field Description private CASResponseCASOperationStatus. casResponseMethods in net.spy.memcached.ops that return CASResponse Modifier and Type Method Description CASResponseCASOperationStatus. getCASResponse()Get the CAS response indicated here.Constructors in net.spy.memcached.ops with parameters of type CASResponse Constructor Description CASOperationStatus(boolean success, java.lang.String msg, CASResponse cres, StatusCode code)
-