Uses of Class
net.spy.memcached.CASValue
-
Packages that use CASValue Package Description net.spy.memcached Memcached client and transformation utils -
-
Uses of CASValue in net.spy.memcached
Methods in net.spy.memcached that return CASValue Modifier and Type Method Description CASValue<java.lang.Object>MemcachedClient. getAndTouch(java.lang.String key, int exp)Get a single key and reset its expiration using the default transcoder.<T> CASValue<T>MemcachedClient. getAndTouch(java.lang.String key, int exp, Transcoder<T> tc)Get with a single key and reset its expiration.CASValue<java.lang.Object>MemcachedClientIF. getAndTouch(java.lang.String key, int exp)<T> CASValue<T>MemcachedClientIF. getAndTouch(java.lang.String key, int exp, Transcoder<T> tc)CASValue<java.lang.Object>MemcachedClient. gets(java.lang.String key)Gets (with CAS support) with a single key using the default transcoder.<T> CASValue<T>MemcachedClient. gets(java.lang.String key, Transcoder<T> tc)Gets (with CAS support) with a single key.CASValue<java.lang.Object>MemcachedClientIF. gets(java.lang.String key)<T> CASValue<T>MemcachedClientIF. gets(java.lang.String key, Transcoder<T> tc)Methods in net.spy.memcached that return types with arguments of type CASValue Modifier and Type Method Description OperationFuture<CASValue<java.lang.Object>>MemcachedClient. asyncGetAndTouch(java.lang.String key, int exp)Get the given key to reset its expiration time.<T> OperationFuture<CASValue<T>>MemcachedClient. asyncGetAndTouch(java.lang.String key, int exp, Transcoder<T> tc)Get the given key to reset its expiration time.java.util.concurrent.Future<CASValue<java.lang.Object>>MemcachedClientIF. asyncGetAndTouch(java.lang.String key, int exp)<T> java.util.concurrent.Future<CASValue<T>>MemcachedClientIF. asyncGetAndTouch(java.lang.String key, int exp, Transcoder<T> tc)OperationFuture<CASValue<java.lang.Object>>MemcachedClient. asyncGets(java.lang.String key)Gets (with CAS support) the given key asynchronously and decode using the default transcoder.<T> OperationFuture<CASValue<T>>MemcachedClient. asyncGets(java.lang.String key, Transcoder<T> tc)Gets (with CAS support) the given key asynchronously.java.util.concurrent.Future<CASValue<java.lang.Object>>MemcachedClientIF. asyncGets(java.lang.String key)<T> java.util.concurrent.Future<CASValue<T>>MemcachedClientIF. asyncGets(java.lang.String key, Transcoder<T> tc)
-