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.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.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)