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<java.lang.Object> MemcachedClientIF.getAndTouch(java.lang.String key, int exp)
           
 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>
MemcachedClientIF.getAndTouch(java.lang.String key, int exp, Transcoder<T> tc)
           
<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.gets(java.lang.String key)
           
 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>
MemcachedClientIF.gets(java.lang.String key, Transcoder<T> tc)
           
<T> CASValue<T>
MemcachedClient.gets(java.lang.String key, Transcoder<T> tc)
          Gets (with CAS support) with a single key.
 

Methods in net.spy.memcached that return types with arguments of type CASValue
 java.util.concurrent.Future<CASValue<java.lang.Object>> MemcachedClientIF.asyncGetAndTouch(java.lang.String key, int exp)
           
 OperationFuture<CASValue<java.lang.Object>> MemcachedClient.asyncGetAndTouch(java.lang.String key, int exp)
          Get the given key to reset its expiration time.
<T> java.util.concurrent.Future<CASValue<T>>
MemcachedClientIF.asyncGetAndTouch(java.lang.String key, int exp, Transcoder<T> tc)
           
<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.asyncGets(java.lang.String key)
           
 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> java.util.concurrent.Future<CASValue<T>>
MemcachedClientIF.asyncGets(java.lang.String key, Transcoder<T> tc)
           
<T> OperationFuture<CASValue<T>>
MemcachedClient.asyncGets(java.lang.String key, Transcoder<T> tc)
          Gets (with CAS support) the given key asynchronously.
 



Copyright © 2006-2009 Dustin Sallings, 2009-2012 Couchbase, Inc.