Uses of Class
net.spy.memcached.CASValue

Packages that use CASValue
net.spy.memcached Memcached client and transformation utils 
 

Uses of CASValue in net.spy.memcached
 

Methods in net.spy.memcached that return CASValue
 CASValue<Object> MemcachedClient.getAndLock(String key, int exp)
          Get and lock with a single key and decode using the default transcoder.
<T> CASValue<T>
MemcachedClient.getAndLock(String key, int exp, Transcoder<T> tc)
          Getl with a single key.
 CASValue<Object> MemcachedClient.getAndTouch(String key, int exp)
          Get a single key and reset its expiration using the default transcoder.
<T> CASValue<T>
MemcachedClient.getAndTouch(String key, int exp, Transcoder<T> tc)
          Get with a single key and reset its expiration.
 CASValue<Object> MemcachedClient.gets(String key)
          Gets (with CAS support) with a single key using the default transcoder.
 CASValue<Object> MemcachedClientIF.gets(String key)
           
<T> CASValue<T>
MemcachedClient.gets(String key, Transcoder<T> tc)
          Gets (with CAS support) with a single key.
<T> CASValue<T>
MemcachedClientIF.gets(String key, Transcoder<T> tc)
           
 

Methods in net.spy.memcached that return types with arguments of type CASValue
 Future<CASValue<Object>> MemcachedClient.asyncGetAndLock(String key, int exp)
          Get and lock the given key asynchronously and decode with the default transcoder.
<T> Future<CASValue<T>>
MemcachedClient.asyncGetAndLock(String key, int exp, Transcoder<T> tc)
          Gets and locks the given key asynchronously.
 Future<CASValue<Object>> MemcachedClient.asyncGetAndTouch(String key, int exp)
          Get the given key to reset its expiration time.
<T> Future<CASValue<T>>
MemcachedClient.asyncGetAndTouch(String key, int exp, Transcoder<T> tc)
          Get the given key to reset its expiration time.
 Future<CASValue<Object>> MemcachedClient.asyncGets(String key)
          Gets (with CAS support) the given key asynchronously and decode using the default transcoder.
 Future<CASValue<Object>> MemcachedClientIF.asyncGets(String key)
           
<T> Future<CASValue<T>>
MemcachedClient.asyncGets(String key, Transcoder<T> tc)
          Gets (with CAS support) the given key asynchronously.
<T> Future<CASValue<T>>
MemcachedClientIF.asyncGets(String key, Transcoder<T> tc)