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<java.util.Map<java.lang.String,java.lang.Object>> MemcachedClientIF.asyncGetBulk(java.util.Collection<java.lang.String> keys)
           
 BulkFuture<java.util.Map<java.lang.String,java.lang.Object>> MemcachedClient.asyncGetBulk(java.util.Collection<java.lang.String> keys)
          Asynchronously get a bunch of objects from the cache and decode them with the given transcoder.
<T> BulkFuture<java.util.Map<java.lang.String,T>>
MemcachedClientIF.asyncGetBulk(java.util.Collection<java.lang.String> keys, java.util.Iterator<Transcoder<T>> tcs)
           
<T> BulkFuture<java.util.Map<java.lang.String,T>>
MemcachedClient.asyncGetBulk(java.util.Collection<java.lang.String> keys, java.util.Iterator<Transcoder<T>> tcIter)
          Asynchronously get a bunch of objects from the cache.
<T> BulkFuture<java.util.Map<java.lang.String,T>>
MemcachedClientIF.asyncGetBulk(java.util.Collection<java.lang.String> keys, Transcoder<T> tc)
           
<T> BulkFuture<java.util.Map<java.lang.String,T>>
MemcachedClient.asyncGetBulk(java.util.Collection<java.lang.String> keys, Transcoder<T> tc)
          Asynchronously get a bunch of objects from the cache.
 BulkFuture<java.util.Map<java.lang.String,java.lang.Object>> MemcachedClientIF.asyncGetBulk(java.util.Iterator<java.lang.String> keys)
           
 BulkFuture<java.util.Map<java.lang.String,java.lang.Object>> MemcachedClient.asyncGetBulk(java.util.Iterator<java.lang.String> keyIter)
          Asynchronously get a bunch of objects from the cache and decode them with the given transcoder.
<T> BulkFuture<java.util.Map<java.lang.String,T>>
MemcachedClientIF.asyncGetBulk(java.util.Iterator<java.lang.String> keys, java.util.Iterator<Transcoder<T>> tcs)
           
<T> BulkFuture<java.util.Map<java.lang.String,T>>
MemcachedClient.asyncGetBulk(java.util.Iterator<java.lang.String> keyIter, java.util.Iterator<Transcoder<T>> tcIter)
          Asynchronously get a bunch of objects from the cache.
<T> BulkFuture<java.util.Map<java.lang.String,T>>
MemcachedClientIF.asyncGetBulk(java.util.Iterator<java.lang.String> keys, Transcoder<T> tc)
           
<T> BulkFuture<java.util.Map<java.lang.String,T>>
MemcachedClient.asyncGetBulk(java.util.Iterator<java.lang.String> keyIter, Transcoder<T> tc)
          Asynchronously get a bunch of objects from the cache.
 BulkFuture<java.util.Map<java.lang.String,java.lang.Object>> MemcachedClientIF.asyncGetBulk(java.lang.String... keys)
           
 BulkFuture<java.util.Map<java.lang.String,java.lang.Object>> MemcachedClient.asyncGetBulk(java.lang.String... keys)
          Varargs wrapper for asynchronous bulk gets with the default transcoder.
<T> BulkFuture<java.util.Map<java.lang.String,T>>
MemcachedClientIF.asyncGetBulk(Transcoder<T> tc, java.lang.String... keys)
           
<T> BulkFuture<java.util.Map<java.lang.String,T>>
MemcachedClient.asyncGetBulk(Transcoder<T> tc, java.lang.String... keys)
          Varargs wrapper for asynchronous bulk gets.
 

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.
 



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