Uses of Interface
net.spy.memcached.internal.BulkFuture

Packages that use BulkFuture
net.spy.memcached Memcached client and transformation utils 
net.spy.memcached.internal Internal utilities. 
 

Uses of BulkFuture in net.spy.memcached
 

Methods in net.spy.memcached that return BulkFuture
 BulkFuture<Map<String,Object>> MemcachedClient.asyncGetBulk(Collection<String> keys)
          Asynchronously get a bunch of objects from the cache and decode them with the given transcoder.
 BulkFuture<Map<String,Object>> MemcachedClientIF.asyncGetBulk(Collection<String> keys)
           
<T> BulkFuture<Map<String,T>>
MemcachedClient.asyncGetBulk(Collection<String> keys, Iterator<Transcoder<T>> tc_iter)
          Asynchronously get a bunch of objects from the cache.
<T> BulkFuture<Map<String,T>>
MemcachedClientIF.asyncGetBulk(Collection<String> keys, Iterator<Transcoder<T>> tcs)
           
<T> BulkFuture<Map<String,T>>
MemcachedClient.asyncGetBulk(Collection<String> keys, Transcoder<T> tc)
          Asynchronously get a bunch of objects from the cache.
<T> BulkFuture<Map<String,T>>
MemcachedClientIF.asyncGetBulk(Collection<String> keys, Transcoder<T> tc)
           
 BulkFuture<Map<String,Object>> MemcachedClient.asyncGetBulk(String... keys)
          Varargs wrapper for asynchronous bulk gets with the default transcoder.
 BulkFuture<Map<String,Object>> MemcachedClientIF.asyncGetBulk(String... keys)
           
<T> BulkFuture<Map<String,T>>
MemcachedClient.asyncGetBulk(Transcoder<T> tc, String... keys)
          Varargs wrapper for asynchronous bulk gets.
<T> BulkFuture<Map<String,T>>
MemcachedClientIF.asyncGetBulk(Transcoder<T> tc, String... keys)
           
 

Uses of BulkFuture in net.spy.memcached.internal
 

Classes in net.spy.memcached.internal that implement BulkFuture
 class BulkGetFuture<T>
          Future for handling results from bulk gets.